Merge pull request #8320 from senny/active_model_log_folder

Log output from activemodel's railtie_test directly to STDOUT.

There's no logging going on here, but since we initialize the app, the
logger is set and the folder is automatically created. With this change,
the default logger is not created, so there is no logging folder anymore.

Conflicts:
	activemodel/test/cases/railtie_test.rb
This commit is contained in:
Carlos Antonio da Silva 2012-11-26 15:32:25 -02:00
commit 26a3b70cc4
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ class RailtieTest < ActiveModel::TestCase
@app ||= Class.new(::Rails::Application) do
config.eager_load = false
config.logger = Logger.new(STDOUT)
end
end