We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4829968 + 39e1b63 commit 3745551Copy full SHA for 3745551
1 file changed
tests/test_object_model.py
@@ -326,3 +326,8 @@ def test_pep585_collection_types(self):
326
obj = PEP585Model(data)
327
328
self.assertIsInstance(obj.field_list, list)
329
+ self.assertIsInstance(obj.field_tuple, tuple)
330
+ self.assertIsInstance(obj.field_dict, dict)
331
+ self.assertIsInstance(obj.field_set, set)
332
+ self.assertIsInstance(obj.field_type, type)
333
+ self.assertIsInstance(obj.field_frozenset, frozenset)
0 commit comments