(db)
| 176 | |
| 177 | @pytest.mark.asyncio |
| 178 | async def test_create(db): |
| 179 | mdl = Tournament(name="Test2") |
| 180 | assert mdl.id is None |
| 181 | await mdl.save() |
| 182 | assert mdl.id is not None |
| 183 | |
| 184 | |
| 185 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…