aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-01-18 01:06:34 +0200
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-01-18 01:15:19 +0200
commita2aa18f897dbcd503ed3b782258a44b21ca752bd (patch)
treee0e6db42466622dc1dd328234cdeb9226fd57e8e /guides
parent51c5bcbb39777b3861a44042a598bfb07d4e1fc1 (diff)
downloadrails-a2aa18f897dbcd503ed3b782258a44b21ca752bd.tar.gz
rails-a2aa18f897dbcd503ed3b782258a44b21ca752bd.tar.bz2
rails-a2aa18f897dbcd503ed3b782258a44b21ca752bd.zip
Allow `false` for `config.generators.system_tests=`
Mention `config.generators.system_tests` in the "Configuring Rails Applications" guide.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 879a1ea89f..98cd5e8fe5 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -200,6 +200,7 @@ The full set of methods that can be used in this block are as follows:
* `force_plural` allows pluralized model names. Defaults to `false`.
* `helper` defines whether or not to generate helpers. Defaults to `true`.
* `integration_tool` defines which integration tool to use to generate integration tests. Defaults to `:test_unit`.
+* `system_tests` defines which integration tool to use to generate system tests. Defaults to `:test_unit`.
* `javascripts` turns on the hook for JavaScript files in generators. Used in Rails for when the `scaffold` generator is run. Defaults to `true`.
* `javascript_engine` configures the engine to be used (for eg. coffee) when generating assets. Defaults to `:js`.
* `orm` defines which orm to use. Defaults to `false` and will use Active Record by default.