Skip to content

Commit 3745551

Browse files
authored
Merge pull request #28 from robabram/ra/update-unittest
Complete test assertions
2 parents 4829968 + 39e1b63 commit 3745551

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/test_object_model.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,3 +326,8 @@ def test_pep585_collection_types(self):
326326
obj = PEP585Model(data)
327327

328328
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

Comments
 (0)