(db, intfields_data)
| 84 | |
| 85 | @pytest.mark.asyncio |
| 86 | async def test_offset_negative(db, intfields_data): |
| 87 | with pytest.raises(ParamsError, match="Offset should be non-negative number"): |
| 88 | await IntFields.all().offset(-10) |
| 89 | |
| 90 | |
| 91 | @pytest.mark.asyncio |