Sha256: e2463eb061f9ed99d1b9ceb482ce0d57f4be146aa3c7498d81472d117275af43

Contents?: true

Size: 1.21 KB

Versions: 120

Compression:

Stored size: 1.21 KB

Contents

require 'active_support/deprecation'

module ActiveSupport
  module Testing
    module Deprecation #:nodoc:
      def assert_deprecated(match = nil, &block)
        result, warnings = collect_deprecations(&block)
        assert !warnings.empty?, "Expected a deprecation warning within the block but received none"
        if match
          match = Regexp.new(Regexp.escape(match)) unless match.is_a?(Regexp)
          assert warnings.any? { |w| w =~ match }, "No deprecation warning matched #{match}: #{warnings.join(', ')}"
        end
        result
      end

      def assert_not_deprecated(&block)
        result, deprecations = collect_deprecations(&block)
        assert deprecations.empty?, "Expected no deprecation warning within the block but received #{deprecations.size}: \n  #{deprecations * "\n  "}"
        result
      end

      def collect_deprecations
        old_behavior = ActiveSupport::Deprecation.behavior
        deprecations = []
        ActiveSupport::Deprecation.behavior = Proc.new do |message, callstack|
          deprecations << message
        end
        result = yield
        [result, deprecations]
      ensure
        ActiveSupport::Deprecation.behavior = old_behavior
      end
    end
  end
end

Version data entries

120 entries across 115 versions & 12 rubygems

Version Path
activesupport-4.0.7 lib/active_support/testing/deprecation.rb
activesupport-4.0.6 lib/active_support/testing/deprecation.rb
activesupport-4.1.2 lib/active_support/testing/deprecation.rb
activesupport-4.1.2.rc3 lib/active_support/testing/deprecation.rb
activesupport-4.0.6.rc3 lib/active_support/testing/deprecation.rb
whos_dated_who-0.1.0 vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/deprecation.rb
activesupport-4.1.2.rc2 lib/active_support/testing/deprecation.rb
activesupport-4.0.6.rc2 lib/active_support/testing/deprecation.rb
whos_dated_who-0.0.1 vendor/bundle/gems/activesupport-4.1.1/lib/active_support/testing/deprecation.rb
activesupport-4.1.2.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.0.6.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.0.5 lib/active_support/testing/deprecation.rb
activesupport-4.1.1 lib/active_support/testing/deprecation.rb
activesupport-4.1.0 lib/active_support/testing/deprecation.rb
activesupport-4.1.0.rc2 lib/active_support/testing/deprecation.rb
activesupport-4.0.4 lib/active_support/testing/deprecation.rb
activesupport-4.0.4.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.1.0.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.1.0.beta2 lib/active_support/testing/deprecation.rb
activesupport-4.1.0.beta1 lib/active_support/testing/deprecation.rb