(self)
| 410 | |
| 411 | @requires_ssl |
| 412 | def test_stls(self): |
| 413 | expected = b'+OK Begin TLS negotiation' |
| 414 | resp = self.client.stls() |
| 415 | self.assertEqual(resp, expected) |
| 416 | |
| 417 | @requires_ssl |
| 418 | def test_stls_context(self): |
nothing calls this directly
no test coverage detected