Module: ActiveSupport::Testing::Deprecation
- Included in:
 - ActiveSupport::TestCase
 
- Defined in:
 - lib/active_support/testing/deprecation.rb
 
Instance Method Summary collapse
- 
  
    
      #assert_deprecated(match = nil, deprecator = nil, &block)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Asserts that a matching deprecation warning was emitted by the given deprecator during the execution of the yielded block.
 - 
  
    
      #assert_not_deprecated(deprecator = nil, &block)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Asserts that no deprecation warnings are emitted by the given deprecator during the execution of the yielded block.
 - 
  
    
      #collect_deprecations(deprecator = nil)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Returns an array of all the deprecation warnings emitted by the given
deprecatorduring the execution of the yielded block. 
Instance Method Details
#assert_deprecated(match = nil, deprecator = nil, &block) ⇒ Object
Asserts that a matching deprecation warning was emitted by the given deprecator during the execution of the yielded block.
assert_deprecated(/foo/, CustomDeprecator) do
  CustomDeprecator.warn "foo should no longer be used"
end
The match object may be a Regexp, or String appearing in the message.
assert_deprecated('foo', CustomDeprecator) do
  CustomDeprecator.warn "foo should no longer be used"
end
If the match is omitted (or explicitly nil), any deprecation warning will match.
assert_deprecated(nil, CustomDeprecator) do
  CustomDeprecator.warn "foo should no longer be used"
end
If no deprecator is given, defaults to ActiveSupport::Deprecation.
assert_deprecated do
  ActiveSupport::Deprecation.warn "foo should no longer be used"
end
  
      31 32 33 34 35 36 37 38 39  | 
    
      # File 'lib/active_support/testing/deprecation.rb', line 31 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
Asserts that no deprecation warnings are emitted by the given deprecator during the execution of the yielded block.
assert_not_deprecated(CustomDeprecator) do
  CustomDeprecator.warn "message" # fails assertion
end
If no deprecator is given, defaults to ActiveSupport::Deprecation.
assert_not_deprecated do
  ActiveSupport::Deprecation.warn "message" # fails assertion
end
assert_not_deprecated do
  CustomDeprecator.warn "message" # passes assertion
end
  
      56 57 58 59 60  | 
    
      # File 'lib/active_support/testing/deprecation.rb', line 56 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
Returns an array of all the deprecation warnings emitted by the given deprecator during the execution of the yielded block.
collect_deprecations(CustomDeprecator) do
  CustomDeprecator.warn "message"
end # => ["message"]
If no deprecator is given, defaults to ActiveSupport::Deprecation.
collect_deprecations do
  CustomDeprecator.warn "custom message"
  ActiveSupport::Deprecation.warn "message"
end # => ["message"]
  
      75 76 77 78 79 80 81 82 83 84 85 86  | 
    
      # File 'lib/active_support/testing/deprecation.rb', line 75 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  |