(self)
| 302 | raise |
| 303 | |
| 304 | def testNOOP(self): |
| 305 | smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', |
| 306 | timeout=support.LOOPBACK_TIMEOUT) |
| 307 | self.addCleanup(smtp.close) |
| 308 | expected = (250, b'OK') |
| 309 | self.assertEqual(smtp.noop(), expected) |
| 310 | smtp.quit() |
| 311 | |
| 312 | def testRSET(self): |
| 313 | smtp = smtplib.SMTP(HOST, self.port, local_hostname='localhost', |
nothing calls this directly
no test coverage detected