(self)
| 181 | client.close() |
| 182 | |
| 183 | def testTimeoutZero(self): |
| 184 | super().testTimeoutZero() |
| 185 | local_host = '/some/local/lmtp/delivery/program' |
| 186 | with self.assertRaises(ValueError): |
| 187 | self.client(local_host, timeout=0) |
| 188 | |
| 189 | # Test server thread using the specified SMTP server class |
| 190 | def debugging_server(serv, serv_evt, client_evt): |
nothing calls this directly
no test coverage detected