aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-02-17 16:48:44 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-02-17 16:48:44 +0900
commita713fdae4eb4f7ccd34932edc61561a96b8d9f35 (patch)
treeb4f3ec2e41a0d104dd53932d44104efc44b1e039
parent21cc0432e4e996383dce88ffb89c4883a577f459 (diff)
downloadrails-a713fdae4eb4f7ccd34932edc61561a96b8d9f35.tar.gz
rails-a713fdae4eb4f7ccd34932edc61561a96b8d9f35.tar.bz2
rails-a713fdae4eb4f7ccd34932edc61561a96b8d9f35.zip
Merge descriptions related to parallel test into one section [ci skip]
-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 5d2b8bc5d6..b9b310cbba 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -469,7 +469,7 @@ Parallel testing allows you to parallelize your test suite. While forking proces
default method, threading is supported as well. Running tests in parallel reduces the time it
takes your entire test suite to run.
-## Parallel testing with processes
+### Parallel testing with processes
The default parallelization method is to fork processes using Ruby's DRb system. The processes
are forked based on the number of workers provided. The default is 2, but can be changed by the
@@ -522,7 +522,7 @@ end
These methods are not needed or available when using parallel testing with threads.
-## Parallel testing with threads
+### Parallel testing with threads
If you prefer using threads or are using JRuby, a threaded parallelization option is provided. The threaded
parallelizer is backed by Minitest's `Parallel::Executor`.