From 124838b508f0375ba75e09a698f6e43f24ec268d Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Sat, 10 Mar 2012 11:44:42 -0300 Subject: Generate middleware http_only! config when running http only app generator [Carlos Antonio da Silva & Santiago Pastorino] --- railties/test/generators/app_generator_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'railties/test/generators') diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index d20dbc2e3b..c949d9a3b0 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -361,6 +361,12 @@ 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"] + 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"] assert_file "app/controllers/application_controller.rb", /class ApplicationController < ActionController::HTTP/ -- cgit v1.2.3