(self)
| 310 | smtp.quit() |
| 311 | |
| 312 | def testRSET(self): |
| 313 | smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', |
| 314 | timeout=support.LOOPBACK_TIMEOUT) |
| 315 | self.addCleanup(smtp.close) |
| 316 | expected = (250, b'OK') |
| 317 | self.assertEqual(smtp.rset(), expected) |
| 318 | smtp.quit() |
| 319 | |
| 320 | def testELHO(self): |
| 321 | # EHLO isn't implemented in DebuggingServer |
nothing calls this directly
no test coverage detected