Class: Test::Unit::Error

Inherits:
Object show all
Defined in:
lib/gems/activesupport-2.2.2/lib/active_support/deprecation.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#message_with_silenced_deprecationObject

Silence warnings when reporting test errors.



234
235
236
237
238
# File 'lib/gems/activesupport-2.2.2/lib/active_support/deprecation.rb', line 234

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