method
after_teardown
v8.0.0 -
Show latest stable
- Class:
ActiveSupport::Testing::SetupAndTeardown
after_teardown()public
No documentation available.
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 44
def after_teardown # :nodoc:
begin
run_callbacks :teardown
rescue => e
self.failures << Minitest::UnexpectedError.new(e)
rescue Minitest::Assertion => e
self.failures << e
end
super
end