Methods
L
S
T
Included Modules
Instance Public methods
logs()
# File railties/test/application/rack/logger_test.rb, line 27
def logs
  @logs ||= Rails.logger.logged(:info).join("\n")
end
setup()
# File railties/test/application/rack/logger_test.rb, line 12
def setup
  build_app
  add_to_config <<-RUBY
    config.logger = ActiveSupport::LogSubscriber::TestHelper::MockLogger.new
  RUBY

  require "#{app_path}/config/environment"
  super
end
teardown()
# File railties/test/application/rack/logger_test.rb, line 22
def teardown
  super
  teardown_app
end