volunteers/Guardfile

9 lines
221 B
Plaintext
Raw Normal View History

2022-12-08 23:55:50 +01:00
2022-12-23 16:38:25 +01:00
guard :minitest do
# with Minitest::Unit
watch(%r{^test/(.*)\/?(.*)_test\.rb$})
watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}#{m[2]}_test.rb" }
watch(%r{^test/test_helper\.rb$}) { 'test' }
2022-12-08 23:55:50 +01:00
end