(tournament_model)
| 322 | |
| 323 | @pytest.mark.asyncio |
| 324 | async def test_all(tournament_model): |
| 325 | mdl = tournament_model |
| 326 | mdls = list(await Tournament.all()) |
| 327 | assert len(mdls) == 1 |
| 328 | assert mdls == [mdl] |
| 329 | |
| 330 | |
| 331 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…