diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-08-16 22:41:51 +0300 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-08-20 13:05:29 +0300 |
commit | b7beb5d4e5a5f642d172002723ef269d0c6a0bfd (patch) | |
tree | fd799c8ded8a347f86d3cb3c09b12f499a47de2a /activejob/lib | |
parent | 2ec60fb8186ad3b227341b7d1874e3f13bd34279 (diff) | |
download | rails-b7beb5d4e5a5f642d172002723ef269d0c6a0bfd.tar.gz rails-b7beb5d4e5a5f642d172002723ef269d0c6a0bfd.tar.bz2 rails-b7beb5d4e5a5f642d172002723ef269d0c6a0bfd.zip |
Fix formatting of `ActiveJob::TestHelper` api docs
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/test_helper.rb | 8 |
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 |