(self)
| 279 | self.assertRaises(poplib.error_proto, self.client._shortcmd, 'echo -err') |
| 280 | |
| 281 | def test_user(self): |
| 282 | self.assertOK(self.client.user('guido')) |
| 283 | self.assertRaises(poplib.error_proto, self.client.user, 'invalid') |
| 284 | |
| 285 | def test_pass_(self): |
| 286 | self.assertOK(self.client.pass_('python')) |
nothing calls this directly
no test coverage detected