(tournament_model)
| 129 | |
| 130 | @pytest.mark.asyncio |
| 131 | async def test_save(tournament_model): |
| 132 | mdl = tournament_model |
| 133 | oldid = mdl.id |
| 134 | await mdl.save() |
| 135 | assert mdl.id == oldid |
| 136 | |
| 137 | |
| 138 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…