vendor/activerecord/test/cases/helper.rb in relevance-castronaut-0.5.4 vs vendor/activerecord/test/cases/helper.rb in relevance-castronaut-0.6.0

- old
+ new

@@ -1,6 +1,7 @@ $:.unshift(File.dirname(__FILE__) + '/../../lib') +$:.unshift(File.dirname(__FILE__) + '/../../../activesupport/lib') require 'config' require 'test/unit' require 'active_record' @@ -43,5 +44,19 @@ # Make with_scope public for tests class << ActiveRecord::Base public :with_scope, :with_exclusive_scope end + +unless ENV['FIXTURE_DEBUG'] + module Test #:nodoc: + module Unit #:nodoc: + class << TestCase #:nodoc: + def try_to_load_dependency_with_silence(*args) + ActiveRecord::Base.logger.silence { try_to_load_dependency_without_silence(*args)} + end + + alias_method_chain :try_to_load_dependency, :silence + end + end + end +end \ No newline at end of file