Test that creating without required array field raises IntegrityError.
(db_array_fields)
| 8 | @requireCapability(dialect="postgres") |
| 9 | @pytest.mark.asyncio |
| 10 | async def test_empty(db_array_fields): |
| 11 | """Test that creating without required array field raises IntegrityError.""" |
| 12 | with pytest.raises(IntegrityError): |
| 13 | await testmodels.ArrayFields.create() |
| 14 | |
| 15 | |
| 16 | @requireCapability(dialect="postgres") |
nothing calls this directly
no test coverage detected
searching dependent graphs…