method

collect_deprecations

collect_deprecations(deprecator = nil)
public

No documentation available.

# File activesupport/lib/active_support/testing/deprecation.rb, line 24
      def collect_deprecations(deprecator = nil)
        deprecator ||= ActiveSupport::Deprecation
        old_behavior = deprecator.behavior
        deprecations = []
        deprecator.behavior = Proc.new do |message, callstack|
          deprecations << message
        end
        result = yield
        [result, deprecations]
      ensure
        deprecator.behavior = old_behavior
      end