Fixture that provides a saved Tournament model instance.
(db)
| 117 | |
| 118 | @pytest_asyncio.fixture |
| 119 | async def tournament_model(db): |
| 120 | """Fixture that provides a saved Tournament model instance.""" |
| 121 | return await Tournament.create(name="Test") |
| 122 | |
| 123 | |
| 124 | @pytest_asyncio.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…