forked from mongomapper/mongomapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
specs.watchr
51 lines (42 loc) · 1.1 KB
/
specs.watchr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
def growl(title, msg, img)
%x{growlnotify -m #{ msg.inspect} -t #{title.inspect} --image ~/.watchr/#{img}.png}
end
def form_growl_message(str)
results = str.split("\n").last
if results =~ /[1-9]\s(failure|error)s?/
growl "Test Results", "#{results}", "fail"
elsif results != ""
growl "Test Results", "#{results}", "pass"
end
end
def run(cmd)
puts(cmd)
output = ""
IO.popen(cmd) do |com|
com.each_char do |c|
print c
output << c
$stdout.flush
end
end
form_growl_message output
end
def run_test_file(file)
run %Q(ruby -I"lib:test" -rubygems #{file})
end
def run_all_tests
run "rake test"
end
def related_test_files(path)
Dir['test/**/*.rb'].select { |file| file =~ /test_#{File.basename(path)}/ }
end
watch('test/test_helper\.rb') { system('clear'); run_all_tests }
watch('test/.*/test_.*\.rb') { |m| system('clear'); run_test_file(m[0]) }
watch('lib/.*') { |m| related_test_files(m[0]).each { |file| run_test_file(file) } }
# Ctrl-\
Signal.trap('QUIT') do
puts " --- Running all tests ---\n\n"
run_all_tests
end
# Ctrl-C
Signal.trap('INT') { abort("\n") }