(self, candidate: int | str, version: int)
| 989 | ], |
| 990 | ) |
| 991 | def test_resolve_ssl_version(self, candidate: int | str, version: int) -> None: |
| 992 | assert resolve_ssl_version(candidate) == version |
| 993 | |
| 994 | def test_ssl_wrap_socket_loads_the_cert_chain(self) -> None: |
| 995 | socket = Mock() |
nothing calls this directly
no test coverage detected