(self)
| 284 | self.assertRaises(poplib.error_proto, self.client.user, 'invalid') |
| 285 | |
| 286 | def test_pass_(self): |
| 287 | self.assertOK(self.client.pass_('python')) |
| 288 | self.assertRaises(poplib.error_proto, self.client.user, 'invalid') |
| 289 | |
| 290 | def test_stat(self): |
| 291 | self.assertEqual(self.client.stat(), (10, 100)) |
nothing calls this directly
no test coverage detected