(item_id: Annotated[int, Path(default=1)])
| 15 | |
| 16 | @app.get("/items/{item_id}/") |
| 17 | async def get_item(item_id: Annotated[int, Path(default=1)]): |
| 18 | pass # pragma: nocover |
| 19 | |
| 20 | with pytest.raises( |
| 21 | AssertionError, |
nothing calls this directly
no test coverage detected
searching dependent graphs…