(db, intfields_data)
| 66 | |
| 67 | @pytest.mark.asyncio |
| 68 | async def test_limit_negative(db, intfields_data): |
| 69 | with pytest.raises(ParamsError, match="Limit should be non-negative number"): |
| 70 | await IntFields.all().limit(-10) |
| 71 | |
| 72 | |
| 73 | @requireCapability(dialect="sqlite") |