(self)
| 368 | smtp.quit() |
| 369 | |
| 370 | def testHELP(self): |
| 371 | smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', |
| 372 | timeout=support.LOOPBACK_TIMEOUT) |
| 373 | self.addCleanup(smtp.close) |
| 374 | self.assertEqual(smtp.help(), b'Supported commands: EHLO HELO MAIL ' + \ |
| 375 | b'RCPT DATA RSET NOOP QUIT VRFY') |
| 376 | smtp.quit() |
| 377 | |
| 378 | def testSend(self): |
| 379 | # connect and send mail |
nothing calls this directly
no test coverage detected