aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-03-15 17:46:28 +0100
committerGitHub <noreply@github.com>2017-03-15 17:46:28 +0100
commit85c2b7565f37351c3d6091eab2a4b966a2f1c8e5 (patch)
tree0115b5fe0a0f09158393cc4167335593990f3b3e /activejob/test
parente7a90bd8d1d5dddf8abcd00badadb4ce12eab7c2 (diff)
downloadrails-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.rb11
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