aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-09-28 17:04:21 -0400
committerGitHub <noreply@github.com>2016-09-28 17:04:21 -0400
commit29f883640cd8b3cebfada163d03595de2dd3daf5 (patch)
tree3b7de8bf25d7a01b11058f61d3f99db41b7077b0 /guides
parentc93b80d53d6e6bf669cc7924335ec7a0bcb2298e (diff)
parent9a918800c0bf37680bb97f2b9634a25b283971c2 (diff)
downloadrails-29f883640cd8b3cebfada163d03595de2dd3daf5.tar.gz
rails-29f883640cd8b3cebfada163d03595de2dd3daf5.tar.bz2
rails-29f883640cd8b3cebfada163d03595de2dd3daf5.zip
Merge pull request #26648 from y-yagi/update_description_of_queue_adapter
update description of queue adapter in test [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index 98847fde18..0ac5121b12 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -1317,8 +1317,8 @@ end
This test is pretty simple and only asserts that the job get the work done
as expected.
-By default, `ActiveJob::TestCase` will set the queue adapter to `:async` so that
-your jobs are performed in an async fashion. It will also ensure that all previously performed
+By default, `ActiveJob::TestCase` will set the queue adapter to `:test` so that
+your jobs are performed inline. It will also ensure that all previously performed
and enqueued jobs are cleared before any test run so you can safely assume that
no jobs have already been executed in the scope of each test.