(db)
| 92 | |
| 93 | @pytest.mark.asyncio |
| 94 | async def test_save(db): |
| 95 | with pytest.raises(ValidationError): |
| 96 | record = ValidatorModel(min_value_decimal=Decimal("0.9")) |
| 97 | await record.save() |
| 98 | |
| 99 | record.min_value_decimal = Decimal("1.5") |
| 100 | await record.save() |
| 101 | |
| 102 | |
| 103 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…