private Method

TestRequest.url_encoded_request_parameters

There's no documentation for this item.

Source Code

# File action_controller/test_process.rb, line 142
def url_encoded_request_parameters
  params = self.request_parameters.dup

  %w(controller action only_path).each do |k|
    params.delete(k)
    params.delete(k.to_sym)
  end

  params.to_query
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.