Stub Rails dispatcher so it does not get controller references and simply return the controller#action as Rack::Body.

Methods
D
M
N
Class Public methods
new(controller_name)
# File actionpack/test/abstract_unit.rb, line 130
def initialize(controller_name)
  @controller = controller_name
end
Instance Public methods
dispatch(action, req, res)
# File actionpack/test/abstract_unit.rb, line 138
def dispatch(action, req, res)
  [200, {'Content-Type' => 'text/html'}, ["#{@controller}##{action}"]]
end
make_response!(request)
# File actionpack/test/abstract_unit.rb, line 134
def make_response!(request)
  self.class.make_response! request
end