method
new
Register or
log in
to add new notes.
weibel -
May 19, 2009 - (v2.2.1 - v2.3.2)
2 thanks
How to set request parameters
On previous versions of TestRequest it was possible to set the request_parameters on the new action. This option is now gone, but it’s still possible to set the parameters after initialization.
Code example
request = ActionController::TestRequest.new request.env["action_controller.request.request_parameters"] = { :foo => '42', :bar => '24' }


