提交 87824ab5 编写于 作者: Y yuuji.yaginuma

update `assert_no_performed_jobs` doc to use `assert_no_performed_jobs` method [ci skip]

上级 3c29836d
......@@ -193,26 +193,13 @@ def assert_performed_jobs(number, only: nil)
# end
#
# The block form supports filtering. If the :only option is specified,
# then only the listed job(s) will be performed.
# then only the listed job(s) will not be performed.
#
# def test_hello_job
# assert_performed_jobs 1, only: HelloJob do
# HelloJob.perform_later('jeremy')
# LoggingJob.perform_later
# end
# end
#
# An array may also be specified, to support testing multiple jobs.
#
# def test_hello_and_logging_jobs
# assert_nothing_raised do
# assert_performed_jobs 2, only: [HelloJob, LoggingJob] do
# HelloJob.perform_later('jeremy')
# LoggingJob.perform_later('stewie')
# RescueJob.perform_later('david')
# end
# end
# def test_no_logging
# assert_no_performed_jobs only: LoggingJob do
# HelloJob.perform_later('jeremy')
# end
# end
#
# Note: This assertion is simply a shortcut for:
#
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册