Merge pull request #33629 from bogdanvlviv/follow-33626

Add example `perform_enqueued_jobs` without block to api docs [ci skip]
This commit is contained in:
Ryuta Kamizono 2018-08-16 15:51:02 +09:00 committed by GitHub
commit 265eeb2559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -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.
#