(db)
| 51 | |
| 52 | @pytest.mark.asyncio |
| 53 | async def test_values(db): |
| 54 | obj0 = await testmodels.FloatFields.create(floatnum=1.23) |
| 55 | values = await testmodels.FloatFields.filter(id=obj0.id).values("floatnum") |
| 56 | assert values[0]["floatnum"] == 1.23 |
| 57 | |
| 58 | |
| 59 | @pytest.mark.asyncio |