(test_client_factory: TestClientFactory)
| 402 | |
| 403 | |
| 404 | def test_mount_at_root(test_client_factory: TestClientFactory) -> None: |
| 405 | mounted = Router([Mount("/", ok, name="users")]) |
| 406 | client = test_client_factory(mounted) |
| 407 | assert client.get("/").status_code == 200 |
| 408 | |
| 409 | |
| 410 | def users_api(request: Request) -> JSONResponse: |
nothing calls this directly
no test coverage detected