Build DoubleFK test data.
(db)
| 466 | |
| 467 | @pytest_asyncio.fixture |
| 468 | async def doublefk_data(db): |
| 469 | """Build DoubleFK test data.""" |
| 470 | one = await DoubleFK.create(name="one") |
| 471 | two = await DoubleFK.create(name="two") |
| 472 | middle = await DoubleFK.create(name="middle", left=one, right=two) |
| 473 | return middle |
| 474 | |
| 475 | |
| 476 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…