aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_helper_test.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-09-28 15:55:45 +0000
committerRick Olson <technoweenie@gmail.com>2007-09-28 15:55:45 +0000
commit5edc81dcc2e13bdce3da01745b0d1af654342aad (patch)
tree3ce7ceea9b18b465576b633a4a8fd859c632706f /actionpack/test/template/form_helper_test.rb
parentb095ce63f2dbc88c1cb6da018d02e3707b8b48b9 (diff)
downloadrails-5edc81dcc2e13bdce3da01745b0d1af654342aad.tar.gz
rails-5edc81dcc2e13bdce3da01745b0d1af654342aad.tar.bz2
rails-5edc81dcc2e13bdce3da01745b0d1af654342aad.zip
Allow ability to disable request forgery protection, disable it in test mode by default. Closes #9693 [lifofifo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7668 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template/form_helper_test.rb')
-rw-r--r--actionpack/test/template/form_helper_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 9b22d4cef3..1c842fc307 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -711,8 +711,8 @@ class FormHelperTest < Test::Unit::TestCase
def post_path(post)
"/posts/#{post.id}"
end
-
- def request_forgery_protection_token
- nil
+
+ def protect_against_forgery?
+ false
end
end