diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2016-02-27 12:29:16 -0500 |
---|---|---|
committer | Arthur Nogueira Neves <github@arthurnn.com> | 2016-02-27 12:29:16 -0500 |
commit | 64e4f201a99bf37de8b88289601ab874849c9476 (patch) | |
tree | 37d9857d026753153769fa12a7ddc38d1cbed5e6 /railties/test | |
parent | ecf6dc3dfbc0cdf1b0a86f48e030debd0f917cb6 (diff) | |
parent | 5a9cc012a0b2c8bc059abb8f5663f0c66258583c (diff) | |
download | rails-64e4f201a99bf37de8b88289601ab874849c9476.tar.gz rails-64e4f201a99bf37de8b88289601ab874849c9476.tar.bz2 rails-64e4f201a99bf37de8b88289601ab874849c9476.zip |
Merge pull request #23921 from y-yagi/remove_rack_cors_initializer_when_updating
remove rack cors initializer when updating
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/app_generator_test.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index c5f9e11ad3..63655044da 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -269,6 +269,32 @@ class AppGeneratorTest < Rails::Generators::TestCase end end + def test_rails_update_does_not_create_rack_cors + app_root = File.join(destination_root, 'myapp') + run_generator [app_root] + + stub_rails_application(app_root) do + generator = Rails::Generators::AppGenerator.new ["rails"], { with_dispatchers: true }, destination_root: app_root, shell: @shell + generator.send(:app_const) + quietly { generator.send(:update_config_files) } + assert_no_file "#{app_root}/config/initializers/cors.rb" + end + end + + def test_rails_update_does_not_remove_rack_cors_if_already_present + app_root = File.join(destination_root, 'myapp') + run_generator [app_root] + + FileUtils.touch("#{app_root}/config/initializers/cors.rb") + + stub_rails_application(app_root) do + generator = Rails::Generators::AppGenerator.new ["rails"], { with_dispatchers: true }, destination_root: app_root, shell: @shell + generator.send(:app_const) + quietly { generator.send(:update_config_files) } + assert_file "#{app_root}/config/initializers/cors.rb" + end + end + def test_application_names_are_not_singularized run_generator [File.join(destination_root, "hats")] assert_file "hats/config/environment.rb", /Rails\.application\.initialize!/ |