diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2017-03-15 17:46:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-15 17:46:28 +0100 |
commit | 85c2b7565f37351c3d6091eab2a4b966a2f1c8e5 (patch) | |
tree | 0115b5fe0a0f09158393cc4167335593990f3b3e /activejob/test | |
parent | e7a90bd8d1d5dddf8abcd00badadb4ce12eab7c2 (diff) | |
download | rails-85c2b7565f37351c3d6091eab2a4b966a2f1c8e5.tar.gz rails-85c2b7565f37351c3d6091eab2a4b966a2f1c8e5.tar.bz2 rails-85c2b7565f37351c3d6091eab2a4b966a2f1c8e5.zip |
Revert #27850 following test breakage (#28427)
Diffstat (limited to 'activejob/test')
-rw-r--r-- | activejob/test/cases/test_helper_test.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/activejob/test/cases/test_helper_test.rb b/activejob/test/cases/test_helper_test.rb index 2e6357f824..81e75b4374 100644 --- a/activejob/test/cases/test_helper_test.rb +++ b/activejob/test/cases/test_helper_test.rb @@ -56,17 +56,6 @@ class EnqueuedJobsTest < ActiveJob::TestCase end end - def test_assert_enqueued_jobs_when_performing_with_only_option - assert_nothing_raised do - assert_enqueued_jobs 1, only: HelloJob do - perform_enqueued_jobs only: LoggingJob do - HelloJob.perform_later("sean") - LoggingJob.perform_later("yves") - end - end - end - end - def test_assert_no_enqueued_jobs_with_no_block assert_nothing_raised do assert_no_enqueued_jobs |