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.



196
197
198
199
200
# File 'lib/active_support/deprecation.rb', line 196

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