diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-03-12 09:17:08 -0300 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-03-14 12:46:24 -0300 |
commit | 3e138df9776985de8ab367dcd9757b404c53435e (patch) | |
tree | 215deba7bba6a36ec1423a1e6b7cdb72e3d19a8a /railties/test/generators | |
parent | 2c0f6b0d8a8f357078fa7399765cf11edc7c645b (diff) | |
download | rails-3e138df9776985de8ab367dcd9757b404c53435e.tar.gz rails-3e138df9776985de8ab367dcd9757b404c53435e.tar.bz2 rails-3e138df9776985de8ab367dcd9757b404c53435e.zip |
Rename http-only app generator option to http
[Carlos Antonio da Silva & Santiago Pastorino]
Diffstat (limited to 'railties/test/generators')
-rw-r--r-- | railties/test/generators/app_generator_test.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index 45f991f681..6f1d56701c 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -361,19 +361,19 @@ class AppGeneratorTest < Rails::Generators::TestCase assert_file "config/application.rb", /config\.active_record\.dependent_restrict_raises = false/ end - def test_http_only_generates_config_middleware_and_generator_http_only_setup - run_generator [destination_root, "--http-only"] + def test_http_generates_config_middleware_and_generator_http_setup + run_generator [destination_root, "--http"] assert_file "config/application.rb", /config\.middleware\.http_only!/, /config\.generators\.http_only!/ end - def test_http_only_generates_application_controller_with_action_controller_http - run_generator [destination_root, "--http-only"] + def test_http_generates_application_controller_with_action_controller_http + run_generator [destination_root, "--http"] assert_file "app/controllers/application_controller.rb", /class ApplicationController < ActionController::HTTP/ end - def test_http_only_generates_application_controller_with_protect_from_forgery_commented_out_setup + def test_http_generates_application_controller_with_protect_from_forgery_commented_out_setup run_generator [destination_root, "--http"] assert_file "app/controllers/application_controller.rb", /^ # protect_from_forgery/ end |