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
This commit is contained in:
David Heinemeier Hansson
2006-02-20 23:49:43 +00:00
parent 377bdd02b9
commit e875b0db47
2 changed files with 9 additions and 2 deletions

View File

@@ -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

View File

@@ -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