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