(tournament_model)
| 217 | |
| 218 | @pytest.mark.asyncio |
| 219 | async def test_eq(tournament_model): |
| 220 | mdl = tournament_model |
| 221 | fetched_mdl = await Tournament.get(name="Test") |
| 222 | assert mdl == fetched_mdl |
| 223 | |
| 224 | |
| 225 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…