Sha256: c633721414d15bad5db438566d4919f40221ff2cdc552b148788dd359ec1b93c

Contents?: true

Size: 1.74 KB

Versions: 112

Compression:

Stored size: 1.74 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

      private
        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

begin
  require 'test/unit/error'
rescue LoadError
  # Using miniunit, ignore.
else
  module Test
    module Unit
      class Error #:nodoc:
        # Silence warnings when reporting test errors.
        def message_with_silenced_deprecation
          ::ActiveSupport::Deprecation.silence { message_without_silenced_deprecation }
        end
        alias_method :message_without_silenced_deprecation, :message
        alias_method :message, :message_with_silenced_deprecation
      end
    end
  end
end

Version data entries

112 entries across 85 versions & 22 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/testing/deprecation.rb
activesupport-3.2.22.5 lib/active_support/testing/deprecation.rb
activesupport-3.2.22.4 lib/active_support/testing/deprecation.rb
activesupport-3.2.22.3 lib/active_support/testing/deprecation.rb
activesupport-3.2.22.2 lib/active_support/testing/deprecation.rb
activesupport-3.2.22.1 lib/active_support/testing/deprecation.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/testing/deprecation.rb
activesupport-3.2.22 lib/active_support/testing/deprecation.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/testing/deprecation.rb
activesupport-3.2.21 lib/active_support/testing/deprecation.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/testing/deprecation.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/testing/deprecation.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/testing/deprecation.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/testing/deprecation.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/testing/deprecation.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/testing/deprecation.rb
activesupport-3.2.20 lib/active_support/testing/deprecation.rb
activesupport-3.2.19 lib/active_support/testing/deprecation.rb
activesupport-3.2.18 lib/active_support/testing/deprecation.rb
activesupport-3.2.17 lib/active_support/testing/deprecation.rb