aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-08-16 22:41:51 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-08-20 13:05:29 +0300
commitb7beb5d4e5a5f642d172002723ef269d0c6a0bfd (patch)
treefd799c8ded8a347f86d3cb3c09b12f499a47de2a /activejob
parent2ec60fb8186ad3b227341b7d1874e3f13bd34279 (diff)
downloadrails-b7beb5d4e5a5f642d172002723ef269d0c6a0bfd.tar.gz
rails-b7beb5d4e5a5f642d172002723ef269d0c6a0bfd.tar.bz2
rails-b7beb5d4e5a5f642d172002723ef269d0c6a0bfd.zip
Fix formatting of `ActiveJob::TestHelper` api docs
Diffstat (limited to 'activejob')
-rw-r--r--activejob/lib/active_job/test_helper.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activejob/lib/active_job/test_helper.rb b/activejob/lib/active_job/test_helper.rb
index 5eac7367f7..dbf9bfb3a4 100644
--- a/activejob/lib/active_job/test_helper.rb
+++ b/activejob/lib/active_job/test_helper.rb
@@ -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