(tournament_model)
| 285 | |
| 286 | @pytest.mark.asyncio |
| 287 | async def test_first(tournament_model): |
| 288 | mdl = tournament_model |
| 289 | fetched_mdl = await Tournament.first() |
| 290 | assert mdl.id == fetched_mdl.id |
| 291 | |
| 292 | |
| 293 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…