class ActionView::TestCase::TestController

def controller_path=(path)

def controller_path=(path)
  self.class.controller_path=(path)
end

def initialize

def initialize
  super
  self.class.controller_path = ""
  @request = ActionController::TestRequest.new
  @response = ActionController::TestResponse.new
  @request.env.delete('PATH_INFO')
  @params = {}
end