-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.watchr
48 lines (37 loc) · 1.49 KB
/
test.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
# install watchr
# $ gem install watchr
#
# Run With:
# $ watchr test.watchr
#
# --------------------------------------------------
# Helpers
# --------------------------------------------------
def run(cmd)
puts(cmd)
system("clear")
system("ruby #{cmd}")
end
# --------------------------------------------------
# Watchr Rules
# --------------------------------------------------
watch("^lib/(.*)\.rb") { |m| run("test/#{m[1]}_test.rb") }
watch("^(.*)/controllers/(.*).rb") { |m| run("test/#{m[1]}/controllers/#{m[2]}_controller_test.rb") }
watch("^test/(.*)/controllers/(.*)_test.rb") { |m| run("test/#{m[1]}/controllers/#{m[2]}_test.rb") }
watch("^(.*)/controllers.rb") { |m| run("test/#{m[1]}/controllers_test.rb") }
watch("^test/(.*)/controllers_test.rb") { |m| run("test/#{m[1]}/controllers_test.rb") }
watch("^(.*)/models/(.*).rb") { |m| run("test/#{m[1]}/models/#{m[2]}_test.rb") }
watch("^test/(.*)/(.*)_test.rb") { |m| run("test/#{m[1]}/models/#{m[2]}_test.rb") }
watch("test.*/test_config\.rb") { system( "padrino rake test" ) }
watch("^test/(.*)_test\.rb") { |m| run("test/#{m[1]}_test.rb") }
# --------------------------------------------------
# Signal Handling
# --------------------------------------------------
# Ctrl-\
Signal.trap('QUIT') do
system("clear")
puts " --- Running all tests ---\n\n"
system "padrino rake test"
end
# Ctrl-C
Signal.trap('INT') { abort("\n") }