Module: ActiveSupport::Testing::Deprecation
- Included in:
- ActiveSupport::TestCase
- Defined in:
- lib/active_support/testing/deprecation.rb
Overview
:nodoc:
Instance Method Summary collapse
- #assert_deprecated(match = nil, deprecator = nil, &block) ⇒ Object
- #assert_not_deprecated(deprecator = nil, &block) ⇒ Object
- #collect_deprecations(deprecator = nil) ⇒ Object
Instance Method Details
#assert_deprecated(match = nil, deprecator = nil, &block) ⇒ Object
8 9 10 11 12 13 14 15 16 |
# File 'lib/active_support/testing/deprecation.rb', line 8 def assert_deprecated(match = nil, deprecator = nil, &block) result, warnings = collect_deprecations(deprecator, &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| match.match?(w) }, "No deprecation warning matched #{match}: #{warnings.join(', ')}" end result end |
#assert_not_deprecated(deprecator = nil, &block) ⇒ Object
18 19 20 21 22 |
# File 'lib/active_support/testing/deprecation.rb', line 18 def assert_not_deprecated(deprecator = nil, &block) result, deprecations = collect_deprecations(deprecator, &block) assert deprecations.empty?, "Expected no deprecation warning within the block but received #{deprecations.size}: \n #{deprecations * "\n "}" result end |
#collect_deprecations(deprecator = nil) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 |
# File '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 |, callstack| deprecations << end result = yield [result, deprecations] ensure deprecator.behavior = old_behavior end |