Fix formatting of `ActiveJob::TestHelper` api docs

This commit is contained in:
bogdanvlviv 2018-08-16 22:41:51 +03:00
parent 2ec60fb818
commit b7beb5d4e5
No known key found for this signature in database
GPG Key ID: E4ACD76A6DB6DFDD
1 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ module ActiveJob
queue_adapter_changed_jobs.each { |klass| klass.disable_test_adapter }
end
# Specifies the queue adapter to use with all active job test helpers.
# Specifies the queue adapter to use with all Active Job test helpers.
#
# Returns an instance of the queue adapter and defaults to
# <tt>ActiveJob::QueueAdapters::TestAdapter</tt>.
@ -217,7 +217,7 @@ module ActiveJob
# end
# end
#
# Also if the :except option is specified,
# Also if the +:except+ option is specified,
# then the job(s) except specific class will be performed.
#
# def test_hello_job
@ -283,7 +283,7 @@ module ActiveJob
# end
# end
#
# The block form supports filtering. If the :only option is specified,
# The block form supports filtering. If the +:only+ option is specified,
# then only the listed job(s) will not be performed.
#
# def test_no_logging
@ -292,7 +292,7 @@ module ActiveJob
# end
# end
#
# Also if the :except option is specified,
# Also if the +:except+ option is specified,
# then the job(s) except specific class will not be performed.
#
# def test_no_logging