class ApplicationIntegrationTest

Public Class Methods

call(env) click to toggle source
# File actionpack/test/controller/integration_test.rb, line 640
def self.call(env)
  routes.call(env)
end
routes() click to toggle source
# File actionpack/test/controller/integration_test.rb, line 644
def self.routes
  @routes ||= ActionDispatch::Routing::RouteSet.new
end

Public Instance Methods

app() click to toggle source
# File actionpack/test/controller/integration_test.rb, line 672
def app
  self.class
end