method
after_teardown
rails 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)
end
super
end