()
| 255 | |
| 256 | |
| 257 | def test_socket_bind() -> None: |
| 258 | config = Config(app=asgi_app) |
| 259 | config.load() |
| 260 | sock = config.bind_socket() |
| 261 | assert isinstance(sock, socket.socket) |
| 262 | sock.close() |
| 263 | |
| 264 | |
| 265 | def test_ssl_config( |
nothing calls this directly
no test coverage detected