class ActionView::TestCase::TestController
Attributes
controller_path[RW]
Overrides AbstractController::Base#controller_path
params[RW]
request[RW]
response[RW]
Public Class Methods
# File actionview/lib/action_view/test_case.rb, line 27 def initialize super self.class.controller_path = "" @request = ActionController::TestRequest.create(self.class) @response = ActionDispatch::TestResponse.new @request.env.delete("PATH_INFO") @params = ActionController::Parameters.new end
Calls superclass method
Public Instance Methods
# File actionview/lib/action_view/test_case.rb, line 23 def controller_path=(path) self.class.controller_path = path end
© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.