recruiter can edit candidate

completes #82
This commit is contained in:
Mark Moser
2016-09-16 11:36:48 -05:00
parent f17ed8e8b1
commit a51a751524
12 changed files with 160 additions and 81 deletions

View File

@ -63,8 +63,9 @@ guard :minitest, spring: "bin/rails test", all_after_pass: true do
watch(%r{^lib/(.+)\.rb$}) { |m| "test/lib/#{m[1]}_test.rb" }
watch(%r{^test/test_helper\.rb$}) { 'test' }
watch(%r{^test/.+_test\.rb$})
# run controller/integration test when touching erb files
# run controller/integration test when touching the router or erb files
watch(%r{^app/views/((?!_mailer).)*([^/]+)\.erb$}) { ["test/controllers", "test/integration"] }
watch(%r{^config/routes.rb}) { ["test/controllers", "test/integration"] }
# run mailers/integration test when touching mailer erb files
watch(%r{^app/views/(.*_mailer/)?([^/]+)\.erb$}) { ["test/mailers", "test/integration"] }
end