Class: Test::Unit::Error

Inherits:
Object show all
Defined in:
lib/active_support/deprecation.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#message_with_silenced_deprecationObject

Silence warnings when reporting test errors.



192
193
194
195
196
# File 'lib/active_support/deprecation.rb', line 192

def message_with_silenced_deprecation
  ActiveSupport::Deprecation.silence do
    message_without_silenced_deprecation
  end
end