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
24:       def initialize
25:         super
26:         self.class.controller_path = ""
27:         @request = ActionController::TestRequest.new
28:         @response = ActionController::TestResponse.new
29: 
30:         @request.env.delete('PATH_INFO')
31:         @params = {}
32:       end
Instance Public methods
controller_path=(path)
    # File actionpack/lib/action_view/test_case.rb, line 20
20:       def controller_path=(path)
21:         self.class.controller_path=(path)
22:       end