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