class ActionDispatch::IntegrationTest::DeadEndRoutes::NullController

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

Public Class Methods

dispatch(action, req, res) click to toggle source
# File actionpack/test/abstract_unit.rb, line 127
def self.dispatch(action, req, res)
  [200, { "Content-Type" => "text/html" }, ["#{req.params[:controller]}##{action}"]]
end