We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df90bd2 commit 185afccCopy full SHA for 185afcc
tests/test_common_metadata.py
@@ -176,6 +176,8 @@ def test_common_metadata_basics(self) -> None:
176
x.common_metadata.description = example_description
177
self.assertEqual(x.common_metadata.description, example_description)
178
self.assertEqual(x.properties["description"], example_description)
179
+ with self.assertRaises(ValueError):
180
+ x.common_metadata.description = ""
181
182
# License
183
license = "PDDL-1.0"
0 commit comments