()
| 10 | |
| 11 | |
| 12 | async def test_create_todo() -> None: |
| 13 | test_client = app.test_client() |
| 14 | response = await test_client.post("/todos/", json=TodoIn(task="Abc", due=None)) |
| 15 | data = await response.get_json() |
| 16 | assert data == {"id": 1, "task": "Abc", "due": None} |
nothing calls this directly
no test coverage detected
searching dependent graphs…