lib/active_support/testing/deprecation.rb in activesupport-3.2.22.5 vs lib/active_support/testing/deprecation.rb in activesupport-4.0.0.beta1
- old
+ new
@@ -32,24 +32,5 @@
ActiveSupport::Deprecation.behavior = old_behavior
end
end
end
end
-
-begin
- require 'test/unit/error'
-rescue LoadError
- # Using miniunit, ignore.
-else
- module Test
- module Unit
- class Error #:nodoc:
- # Silence warnings when reporting test errors.
- def message_with_silenced_deprecation
- ::ActiveSupport::Deprecation.silence { message_without_silenced_deprecation }
- end
- alias_method :message_without_silenced_deprecation, :message
- alias_method :message, :message_with_silenced_deprecation
- end
- end
- end
-end