(self)
| 381 | self.assertRaises(poplib.error_proto, self.client.utf8) |
| 382 | |
| 383 | def test_utf8(self): |
| 384 | self.server.handler.enable_UTF8 = True |
| 385 | expected = b'+OK I know RFC6856' |
| 386 | result = self.client.utf8() |
| 387 | self.assertEqual(result, expected) |
| 388 | |
| 389 | def test_capa(self): |
| 390 | capa = self.client.capa() |
nothing calls this directly
no test coverage detected