(self)
| 1220 | |
| 1221 | @gen_test |
| 1222 | async def test_match(self): |
| 1223 | stream = SSLIOStream(socket.socket(), ssl_options=self.client_ssl_ctx) |
| 1224 | await stream.connect( |
| 1225 | ("127.0.0.1", self.port), |
| 1226 | server_hostname="foo.example.com", |
| 1227 | ) |
| 1228 | stream.close() |
| 1229 | |
| 1230 | @gen_test |
| 1231 | async def test_no_match(self): |
nothing calls this directly
no test coverage detected