aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-11-01 19:27:18 +0100
committerRobin Dupret <robin.dupret@gmail.com>2014-11-01 19:36:24 +0100
commit30c3813cf0851598aac2f41e51c72a0624e8cf23 (patch)
treee6433c3ef1121189c284351b6dc47f5834482df8 /activejob
parentc465cdd5038e1945f13cae840f8fa8cb189088ee (diff)
downloadrails-30c3813cf0851598aac2f41e51c72a0624e8cf23.tar.gz
rails-30c3813cf0851598aac2f41e51c72a0624e8cf23.tar.bz2
rails-30c3813cf0851598aac2f41e51c72a0624e8cf23.zip
Tiny documentation fixes and styling improvements
[ci skip]
Diffstat (limited to 'activejob')
-rw-r--r--activejob/lib/active_job/test_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/test_helper.rb b/activejob/lib/active_job/test_helper.rb
index ade7a94c9d..bb20d93947 100644
--- a/activejob/lib/active_job/test_helper.rb
+++ b/activejob/lib/active_job/test_helper.rb
@@ -53,7 +53,7 @@ module ActiveJob
end
end
- # Assert that no job have been enqueued.
+ # Asserts that no jobs have been enqueued.
#
# def test_jobs
# assert_no_enqueued_jobs
@@ -137,7 +137,7 @@ module ActiveJob
# Asserts that the job passed in the block has been enqueued with the given arguments.
#
- # def assert_enqueued_job
+ # def test_assert_enqueued_with
# assert_enqueued_with(job: MyJob, args: [1,2,3], queue: 'low') do
# MyJob.perform_later(1,2,3)
# end