From e875b0db4714a86798a8248e91bea3fb7ffefe52 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 20 Feb 2006 23:49:43 +0000 Subject: Fixed that the request method would be sticky in tests (closes #3849) [lars@pinds.com] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3622 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/test_process.rb | 5 +++-- actionpack/test/controller/test_test.rb | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/actionpack/lib/action_controller/test_process.rb b/actionpack/lib/action_controller/test_process.rb index caba4bfb39..5fe88eb454 100644 --- a/actionpack/lib/action_controller/test_process.rb +++ b/actionpack/lib/action_controller/test_process.rb @@ -102,8 +102,9 @@ module ActionController #:nodoc: def recycle! self.request_parameters = {} - self.query_parameters = {} - self.path_parameters = {} + self.query_parameters = {} + self.path_parameters = {} + @request_method = nil end private diff --git a/actionpack/test/controller/test_test.rb b/actionpack/test/controller/test_test.rb index 04baff6ed6..dcb16841ae 100644 --- a/actionpack/test/controller/test_test.rb +++ b/actionpack/test/controller/test_test.rb @@ -327,6 +327,12 @@ HTML assert_nil @request.env['HTTP_X_REQUESTED_WITH'] end + def test_header_properly_reset_after_get_request + get :test_params + @request.recycle! + assert_nil @request.instance_variable_get("@request_method") + end + %w(controller response request).each do |variable| %w(get post put delete head process).each do |method| define_method("test_#{variable}_missing_for_#{method}_raises_error") do -- cgit v1.2.3