Create IntFields test data.
(db)
| 9 | |
| 10 | @pytest_asyncio.fixture |
| 11 | async def intfields_data(db): |
| 12 | """Create IntFields test data.""" |
| 13 | intfields = [await IntFields.create(intnum=val) for val in range(10)] |
| 14 | return intfields |
| 15 | |
| 16 | |
| 17 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…