fakefs/test.watchr
2011-05-21 10:10:23 -04:00

7 lines
111 B
Ruby

watch('test/.*_test.rb') { run_tests }
watch('lib/.*.rb') { run_tests }
def run_tests
system 'rake test'
end