(db)
| 5 | |
| 6 | @pytest.mark.asyncio |
| 7 | async def test_create_user(db): |
| 8 | user = await User.create(name="Alice") |
| 9 | assert user.id is not None |
| 10 | assert user.name == "Alice" |
| 11 | |
| 12 | |
| 13 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…