(self)
| 272 | self.server = None |
| 273 | |
| 274 | def test_getwelcome(self): |
| 275 | self.assertEqual(self.client.getwelcome(), |
| 276 | b'+OK dummy pop3 server ready. <timestamp>') |
| 277 | |
| 278 | def test_exceptions(self): |
| 279 | self.assertRaises(poplib.error_proto, self.client._shortcmd, 'echo -err') |
nothing calls this directly
no test coverage detected