()
| 3 | |
| 4 | |
| 5 | async def test_echo() -> None: |
| 6 | test_client = app.test_client() |
| 7 | response = await test_client.post("/echo", json={"a": "b"}) |
| 8 | data = await response.get_json() |
| 9 | assert data == {"extra": True, "input": {"a": "b"}} |
| 10 | |
| 11 | |
| 12 | async def test_create_todo() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…