Skip to Content Skip to Search
Methods
C
N
Included Modules

Attributes

[RW] controller_path

Overrides AbstractController::Base#controller_path

[RW] params
[RW] request
[RW] response

Class Public methods

new()

# 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

Instance Public methods

controller_path=(path)

# File actionview/lib/action_view/test_case.rb, line 23
def controller_path=(path)
  self.class.controller_path = path
end