(db)
| 8 | |
| 9 | @pytest.mark.asyncio |
| 10 | async def test_validator_regex(db): |
| 11 | with pytest.raises(ValidationError): |
| 12 | await ValidatorModel.create(regex="ccc") |
| 13 | await ValidatorModel.create(regex="abcd") |
| 14 | |
| 15 | |
| 16 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected
searching dependent graphs…