(db)
| 32 | |
| 33 | @pytest.mark.asyncio |
| 34 | async def test_values(db): |
| 35 | obj0 = await testmodels.BooleanFields.create(boolean=True) |
| 36 | values = await testmodels.BooleanFields.get(id=obj0.id).values("boolean") |
| 37 | assert values["boolean"] is True |
| 38 | |
| 39 | |
| 40 | @pytest.mark.asyncio |