(self)
| 111 | |
| 112 | class TreeKnowledgeTests(unittest.TestCase): |
| 113 | def test_root_helper(self): |
| 114 | tree = _make_tree() |
| 115 | root = tree.root() |
| 116 | self.assertEqual(root.title, "Root") |
| 117 | self.assertIsNone(root.parent_id) |
| 118 | |
| 119 | def test_children_of(self): |
| 120 | tree = _make_tree() |
nothing calls this directly
no test coverage detected