Adding ssl tests in Guardfile.

This commit is contained in:
Juliette Cougnoux 2018-08-02 11:37:06 +02:00
parent b5d3c957c1
commit f468c5e5fd
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ guard "minitest", spring: "bin/rails test" do
watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" } watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" }
watch(%r{^app/services/notifier/.+\.rb}) { |_m| "test/services/notifier" } watch(%r{^app/services/notifier/.+\.rb}) { |_m| "test/services/notifier" }
watch(%r{^app/services/whois/.+\.rb}) { |_m| "test/services/whois" } watch(%r{^app/services/whois/.+\.rb}) { |_m| "test/services/whois" }
watch(%r{^app/services/ssl/.+\.rb}) { |_m| "test/services/ssl" }
watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" } watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
watch(%r{^test/.+_test\.rb$}) watch(%r{^test/.+_test\.rb$})
watch(%r{^test/test_helper\.rb$}) { "test" } watch(%r{^test/test_helper\.rb$}) { "test" }