aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-06-29 01:24:37 -0700
committerGitHub <noreply@github.com>2016-06-29 01:24:37 -0700
commit10539ad7a998d305dd94d0ff3b39991ad3918c18 (patch)
treee6601c6a3316faab83ec7a77fb46781bdbcfe81f /guides
parent6e6e8abec10e31a9c3eb975e1c563093e9218ae5 (diff)
parente9a909c162eed0a1686a02ce1a239b69e44740d6 (diff)
downloadrails-10539ad7a998d305dd94d0ff3b39991ad3918c18.tar.gz
rails-10539ad7a998d305dd94d0ff3b39991ad3918c18.tar.bz2
rails-10539ad7a998d305dd94d0ff3b39991ad3918c18.zip
Merge pull request #25567 from y-yagi/update_description_of_test_order
update description of `test_order` [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index f34b6473b2..1f7e9cc61f 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -592,7 +592,7 @@ There are a few configuration options available in Active Support:
* `config.active_support.bare` enables or disables the loading of `active_support/all` when booting Rails. Defaults to `nil`, which means `active_support/all` is loaded.
-* `config.active_support.test_order` sets the order that test cases are executed. Possible values are `:random` and `:sorted`. This option is set to `:random` in `config/environments/test.rb` in newly-generated applications. If you have an application that does not specify a `test_order`, it will default to `:sorted`, *until* Rails 5.0, when the default will become `:random`.
+* `config.active_support.test_order` sets the order in which the test cases are executed. Possible values are `:random` and `:sorted`. Defaults to `:random`.
* `config.active_support.escape_html_entities_in_json` enables or disables the escaping of HTML entities in JSON serialization. Defaults to `true`.