未验证 提交 7df7780e 编写于 作者: E Eileen M. Uchitelle 提交者: GitHub

Merge pull request #31730 from bogdanvlviv/allow_false_for-config-generators-system_tests

Allow `false` for `config.generators.system_tests=`
......@@ -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.
......
......@@ -23,7 +23,7 @@ def create_test_files
template template_file,
File.join("test/controllers", controller_class_path, "#{controller_file_name}_controller_test.rb")
unless options.api? || options[:system_tests].nil?
if !options.api? && options[:system_tests]
template "system_test.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb")
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册