Adds Failing Test Case to Test

This commit is contained in:
2025-08-18 22:27:49 -03:00
parent d431dca353
commit 617f1aab2b

View File

@@ -204,6 +204,9 @@ class TestSchemaConverter(TestCase):
model(friends=["John", "Jane", "John"]).friends, {"John", "Jane"} model(friends=["John", "Jane", "John"]).friends, {"John", "Jane"}
) )
with self.assertRaises(ValueError):
model()
with self.assertRaises(ValueError): with self.assertRaises(ValueError):
model(friends=[]) model(friends=[])