class ActionView::TestCase::TestController

Attributes

controller_path[RW]

Overrides AbstractController::Base#controller_path

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

Public Class Methods

controller_name() click to toggle source
# File lib/action_view/test_case.rb, line 26
def self.controller_name
  "test"
end
new() click to toggle source
Calls superclass method
# File lib/action_view/test_case.rb, line 30
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

Public Instance Methods

controller_path=(path) click to toggle source
# File lib/action_view/test_case.rb, line 22
def controller_path=(path)
  self.class.controller_path = path
end