aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-09-23 10:43:59 +0200
committerYves Senn <yves.senn@gmail.com>2014-09-23 10:44:44 +0200
commit017294066fd7f54401d13db116f59655553e6b8c (patch)
tree81f1d8cf8ab14b6f436b72aa6a3acd8b2424b447 /activejob/lib
parent92cef19519c82e6e4c592b1d34652fa8c854ab29 (diff)
parent39bef5823ff611c8e3a066ab398e2dd763888f9a (diff)
downloadrails-017294066fd7f54401d13db116f59655553e6b8c.tar.gz
rails-017294066fd7f54401d13db116f59655553e6b8c.tar.bz2
rails-017294066fd7f54401d13db116f59655553e6b8c.zip
Merge pull request #17005 from y-yagi/fix_aj_test_helper
add message to `assert` in `assert_enqueued_with`
Diffstat (limited to 'activejob/lib')
-rw-r--r--activejob/lib/active_job/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/test_helper.rb b/activejob/lib/active_job/test_helper.rb
index fa0576669e..af62fae9b9 100644
--- a/activejob/lib/active_job/test_helper.rb
+++ b/activejob/lib/active_job/test_helper.rb
@@ -150,7 +150,7 @@ module ActiveJob
matching_job = enqueued_jobs.any? do |job|
args.all? { |key, value| value == job[key] }
end
- assert matching_job
+ assert matching_job, "No enqueued job found with #{args}"
ensure
queue_adapter.enqueued_jobs = original_enqueued_jobs + enqueued_jobs
end