Methods
C
N
Included Modules
Attributes
[RW] request
[RW] response
[RW] params
[W] controller_path
Class Public methods
new()
# File actionpack/lib/action_view/test_case.rb, line 24
def initialize
  super
  self.class.controller_path = ""
  @request = ActionController::TestRequest.new
  @response = ActionController::TestResponse.new

  @request.env.delete('PATH_INFO')
  @params = {}
end
Instance Public methods
controller_path=(path)
# File actionpack/lib/action_view/test_case.rb, line 20
def controller_path=(path)
  self.class.controller_path=(path)
end