getting rid of debug output when running the specs

This commit is contained in:
Thorsten Böttger 2012-05-17 22:39:06 +12:00
parent 54b44c93e4
commit 63f2b10212
2 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,8 @@ require 'logger'
load_schema
ActiveRecord::Base.logger = Logger.new(STDERR)
# if you want to see the statements while running the spec enable the following line
# ActiveRecord::Base.logger = Logger.new(STDERR)
class Gate < ActiveRecord::Base
include AASM

View File

@ -3,8 +3,6 @@ require 'active_record'
require 'logger'
require 'i18n'
ActiveRecord::Base.logger = Logger.new(STDERR)
class LocalizerTestModel < ActiveRecord::Base
include AASM