Overrides AbstractController::Base#controller_path
# File actionview/lib/action_view/test_case.rb, line 27 def self.controller_name "test" end
# File actionview/lib/action_view/test_case.rb, line 31
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 # File actionview/lib/action_view/test_case.rb, line 23 def controller_path=(path) self.class.controller_path = path end
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.