aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-06-11 18:24:25 -0400
committerGitHub <noreply@github.com>2016-06-11 18:24:25 -0400
commit7f6af4b6274f2816ee8aa1dda7863b7d7f93d02f (patch)
tree730017ea5ba9fb2618683cdb65b8701400088a7f /activejob/test
parente5ba6b296b07ceeb1b2ff7610f3b1ce03d6542e6 (diff)
parent38c187b0cc211bf79207f4ae59deef6f522e1736 (diff)
downloadrails-7f6af4b6274f2816ee8aa1dda7863b7d7f93d02f.tar.gz
rails-7f6af4b6274f2816ee8aa1dda7863b7d7f93d02f.tar.bz2
rails-7f6af4b6274f2816ee8aa1dda7863b7d7f93d02f.zip
Merge pull request #25367 from stephenminded/active_job_test_helper_custom_queue_adapter
Provide the ability to override the queue adapter used by jobs under test
Diffstat (limited to 'activejob/test')
-rw-r--r--activejob/test/cases/test_helper_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activejob/test/cases/test_helper_test.rb b/activejob/test/cases/test_helper_test.rb
index f7ee763e8a..3d863f5e65 100644
--- a/activejob/test/cases/test_helper_test.rb
+++ b/activejob/test/cases/test_helper_test.rb
@@ -509,3 +509,15 @@ class PerformedJobsTest < ActiveJob::TestCase
assert_equal 2, ActiveJob::Base.queue_adapter.performed_jobs.count
end
end
+
+class OverrideQueueAdapterTest < ActiveJob::TestCase
+ class CustomQueueAdapter < ActiveJob::QueueAdapters::TestAdapter; end
+
+ def queue_adapter_for_test
+ CustomQueueAdapter.new
+ end
+
+ def test_assert_job_has_custom_queue_adapter_set
+ assert_instance_of CustomQueueAdapter, HelloJob.queue_adapter
+ end
+end