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