aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-03-10 11:02:27 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-14 12:46:23 -0300
commit5c8c7ca2f99903533175e6da1da61fd349bce261 (patch)
treee1973b09b2aafa5ddf3c2fb30ea2e461c41b0aae /railties/test/generators
parent4c16791f355c74f8e6ad916e67fd4ae81efbf708 (diff)
downloadrails-5c8c7ca2f99903533175e6da1da61fd349bce261.tar.gz
rails-5c8c7ca2f99903533175e6da1da61fd349bce261.tar.bz2
rails-5c8c7ca2f99903533175e6da1da61fd349bce261.zip
Add http-only option to Rails app generator
Change application controller template accordingly, to inherit from ActionController::HTTP and not generate protect_from_forgery call. [Carlos Antonio da Silva & Santiago Pastorino]
Diffstat (limited to 'railties/test/generators')
-rw-r--r--railties/test/generators/app_generator_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb
index 4db0cdc28e..d20dbc2e3b 100644
--- a/railties/test/generators/app_generator_test.rb
+++ b/railties/test/generators/app_generator_test.rb
@@ -361,6 +361,16 @@ class AppGeneratorTest < Rails::Generators::TestCase
assert_file "config/application.rb", /config\.active_record\.dependent_restrict_raises = false/
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/
+ end
+
+ def test_http_only_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
+
def test_pretend_option
output = run_generator [File.join(destination_root, "myapp"), "--pretend"]
assert_no_match(/run bundle install/, output)