(tournament_model)
| 306 | |
| 307 | @pytest.mark.asyncio |
| 308 | async def test_earliest(tournament_model): |
| 309 | mdl = tournament_model |
| 310 | fetched_mdl = await Tournament.earliest("name") |
| 311 | assert mdl.id == fetched_mdl.id |
| 312 | |
| 313 | |
| 314 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…