instance method
_assert_nothing_raised_or_warn
Ruby on Rails 7.2.3
Since v7.0.10 PrivateSignature
_assert_nothing_raised_or_warn(assertion, &block)
No documentation comment.
Parameters
-
assertionreq -
blockblock
Source
# File activesupport/lib/active_support/testing/assertions.rb, line 265
def _assert_nothing_raised_or_warn(assertion, &block)
assert_nothing_raised(&block)
rescue Minitest::UnexpectedError => e
if tagged_logger && tagged_logger.warn?
warning = <<~MSG
#{self.class} - #{name}: #{e.error.class} raised.
If you expected this exception, use `assert_raises` as near to the code that raises as possible.
Other block based assertions (e.g. `#{assertion}`) can be used, as long as `assert_raises` is inside their block.
MSG
tagged_logger.warn warning
end
raise
end
Defined in activesupport/lib/active_support/testing/assertions.rb line 265
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Testing::Assertions