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.2.11.3 lib/active_support/testing/deprecation.rb
activesupport-4.2.11.2 lib/active_support/testing/deprecation.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/testing/deprecation.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/testing/deprecation.rb
activesupport-4.2.11.1 lib/active_support/testing/deprecation.rb
activesupport-4.2.11 lib/active_support/testing/deprecation.rb
activesupport-4.2.10 lib/active_support/testing/deprecation.rb
activesupport-4.2.10.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.2.9 lib/active_support/testing/deprecation.rb
activesupport-4.2.9.rc2 lib/active_support/testing/deprecation.rb
activesupport-4.2.9.rc1 lib/active_support/testing/deprecation.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-4.2.8/lib/active_support/testing/deprecation.rb
activesupport-4.2.8 lib/active_support/testing/deprecation.rb
activesupport-4.2.8.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.2.7.1 lib/active_support/testing/deprecation.rb
activesupport-4.2.7 lib/active_support/testing/deprecation.rb
activesupport-4.1.16 lib/active_support/testing/deprecation.rb
activesupport-4.1.16.rc1 lib/active_support/testing/deprecation.rb
activesupport-4.2.7.rc1 lib/active_support/testing/deprecation.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-4.2.6/lib/active_support/testing/deprecation.rb