(self)
| 36 | self.assertTrue(ti.IsExpandable()) |
| 37 | |
| 38 | def test_keys(self): |
| 39 | ti = debugobj.SequenceTreeItem('label', 'abc') |
| 40 | self.assertEqual(list(ti.keys()), [0, 1, 2]) # keys() is a range. |
| 41 | |
| 42 | |
| 43 | class DictTreeItemTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected