Namespace
Methods
S
Constants
RoutesApp = Struct.new(:routes).new(SharedTestRoutes)
 
ProductionApp = ActionDispatch::DebugExceptions.new(Boomer.new(false), RoutesApp)
 
DevelopmentApp = ActionDispatch::DebugExceptions.new(Boomer.new(true), RoutesApp)
 
Instance Public methods
setup()
# File actionpack/test/dispatch/debug_exceptions_test.rb, line 74
def setup
  app = ActiveSupport::OrderedOptions.new
  app.config = ActiveSupport::OrderedOptions.new
  app.config.assets = ActiveSupport::OrderedOptions.new
  app.config.assets.prefix = '/sprockets'
  Rails.stubs(:application).returns(app)
end