(self)
| 402 | |
| 403 | @requires_ssl |
| 404 | def test_stls(self): |
| 405 | expected = b'+OK Begin TLS negotiation' |
| 406 | resp = self.client.stls() |
| 407 | self.assertEqual(resp, expected) |
| 408 | |
| 409 | @requires_ssl |
| 410 | def test_stls_context(self): |
nothing calls this directly
no test coverage detected