diff options
Diffstat (limited to 'railties/test/application/configuration_test.rb')
-rw-r--r-- | railties/test/application/configuration_test.rb | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/railties/test/application/configuration_test.rb b/railties/test/application/configuration_test.rb index 40000b0ce6..7b45623f6c 100644 --- a/railties/test/application/configuration_test.rb +++ b/railties/test/application/configuration_test.rb @@ -670,26 +670,5 @@ module ApplicationTests end end end - - test "set logger to STDOUT by default" do - stdout = capture(:stdout) do - app = build_app - - controller :omg, <<-RUBY - class OmgController < ApplicationController - def index - Rails.logger.info "HI MOM" - render text: "omg" - end - end - RUBY - - require "#{app_path}/config/environment" - - get "/omg/index" - end - - assert stdout.include?("HI MOM"), "STDOUT does not include 'HI MOM', #{stdout}" - end end end |