(tournament_model)
| 292 | |
| 293 | @pytest.mark.asyncio |
| 294 | async def test_last(tournament_model): |
| 295 | mdl = tournament_model |
| 296 | fetched_mdl = await Tournament.last() |
| 297 | assert mdl.id == fetched_mdl.id |
| 298 | |
| 299 | |
| 300 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…