(var: Annotated[str, Query()] = "bar")
| 80 | @app.get("/test1") |
| 81 | @app.get("/test2") |
| 82 | async def test(var: Annotated[str, Query()] = "bar"): |
| 83 | return {"foo": var} |
| 84 | |
| 85 | client = TestClient(app) |
| 86 | response = client.get("/test1") |
nothing calls this directly
no test coverage detected
searching dependent graphs…