()
| 42 | |
| 43 | @pytest.mark.anyio |
| 44 | async def test_http_auto(): |
| 45 | config = Config(app=app) |
| 46 | server_state = ServerState() |
| 47 | protocol = AutoHTTPProtocol(config=config, server_state=server_state, app_state={}) |
| 48 | assert type(protocol).__name__ == expected_http |
| 49 | |
| 50 | |
| 51 | @pytest.mark.anyio |
nothing calls this directly
no test coverage detected