1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #28708 from y-yagi/dont_generate_system_test_files

Don't generate system test files if `skip_system_test` option is specified
This commit is contained in:
Rafael França 2017-04-19 20:35:04 -04:00 committed by GitHub
commit e8b4a92734
2 changed files with 15 additions and 0 deletions

View file

@ -34,6 +34,10 @@ module <%= app_const_base %>
# Middleware like session, flash, cookies can be added back manually.
# Skip views, helpers and assets when generating a new resource.
config.api_only = true
<%- elsif !depends_on_system_test? -%>
# Don't generate system test files.
config.generators.system_tests = nil
<%- end -%>
end
end

View file

@ -451,6 +451,17 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
end
def test_does_not_generate_system_test_files_if_skip_system_test_is_given
run_generator [destination_root, "--skip_system_test"]
Dir.chdir(destination_root) do
quietly { `./bin/rails g scaffold User` }
assert_no_file("test/application_system_test_case.rb")
assert_no_file("test/system/users_test.rb")
end
end
def test_generator_if_api_is_given
run_generator [destination_root, "--api"]
assert_file "Gemfile" do |content|