aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-08-16 09:24:08 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-08-16 09:29:30 +0300
commitf169752163f3e2abfead4963751989d8cdea370c (patch)
tree1ab079b7e2e510e99e15629db1e3fc433d472b02 /activejob/lib
parente33c3cd8ccbecaca6c6af0438956431b02cb3fb2 (diff)
downloadrails-f169752163f3e2abfead4963751989d8cdea370c.tar.gz
rails-f169752163f3e2abfead4963751989d8cdea370c.tar.bz2
rails-f169752163f3e2abfead4963751989d8cdea370c.zip
Add example `perform_enqueued_jobs` without block to api docs [ci skip]
Follow up #33626
Diffstat (limited to 'activejob/lib')
-rw-r--r--activejob/lib/active_job/test_helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activejob/lib/active_job/test_helper.rb b/activejob/lib/active_job/test_helper.rb
index e9b1d5c6fc..b45cc57fb0 100644
--- a/activejob/lib/active_job/test_helper.rb
+++ b/activejob/lib/active_job/test_helper.rb
@@ -373,6 +373,14 @@ module ActiveJob
# assert_performed_jobs 1
# end
#
+ # def test_perform_enqueued_jobs_without_block
+ # MyJob.perform_later(1, 2, 3)
+ #
+ # perform_enqueued_jobs
+ #
+ # assert_performed_jobs 1
+ # end
+ #
# This method also supports filtering. If the +:only+ option is specified,
# then only the listed job(s) will be performed.
#