merged/Guardfile

13 lines
531 B
Plaintext
Raw Permalink Normal View History

guard :minitest , all_on_start: false do
sys_tests = "test/integration"
2022-12-22 20:28:00 +01:00
# with Minitest::Unit
watch(%r{^test/(.*)\/?(.*)_test\.rb$})
watch(%r{^app/controllers/merged/([^/]+)_([^/]+)\.rb$}) { |m| Dir["test/integration/#{m[1]}*_test.rb"] }
watch(%r{^app/models/merged/([^/]+)\.rb$}) { |m| Dir["test/models/#{m[1]}*_test.rb"] }
watch(%r{^app/views/merged/([^/]+)\/([^/]+)\.haml$}){ |m| Dir["test/integration/#{m[1]}_#{m[2]}_test.rb"] }
2022-12-22 20:28:00 +01:00
watch(%r{^test/test_helper\.rb$}) { 'test' }
2022-12-23 20:52:02 +01:00
notification :off
2022-12-22 20:28:00 +01:00
end