aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2015-04-28 09:12:39 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2015-04-28 09:12:39 -0300
commit76fc205f9970208d597774095eccdaf07559803b (patch)
tree424d350ffad6bc0fa8153e4d839d9658a9eb597a
parent4a95688ee1cbbcbc1f07e5a5d5adfef604a8e9dc (diff)
parentb0d51c1b904816439c0f5a8c86c888d8a956b005 (diff)
downloadrails-76fc205f9970208d597774095eccdaf07559803b.tar.gz
rails-76fc205f9970208d597774095eccdaf07559803b.tar.bz2
rails-76fc205f9970208d597774095eccdaf07559803b.zip
Merge pull request #19935 from eliotsykes/clarify-configuring-default-test-order
Clarify test_order default configuration behaviour [ci skip]
-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 938ba2c89f..4da369be5e 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -524,7 +524,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 `:sorted` and `:random`. Currently defaults to `:sorted`. In Rails 5.0, the default will be changed to `:random` instead.
+* `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.escape_html_entities_in_json` enables or disables the escaping of HTML entities in JSON serialization. Defaults to `false`.