(tournament_model)
| 299 | |
| 300 | @pytest.mark.asyncio |
| 301 | async def test_latest(tournament_model): |
| 302 | mdl = tournament_model |
| 303 | fetched_mdl = await Tournament.latest("name") |
| 304 | assert mdl.id == fetched_mdl.id |
| 305 | |
| 306 | |
| 307 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…