module ActiveSupport::Testing::SetupAndTeardown

def after_teardown # :nodoc:

:nodoc:
def after_teardown # :nodoc:
  begin
    run_callbacks :teardown
  rescue => e
    self.failures << Minitest::UnexpectedError.new(e)
  end
  super
end