(self)
| 140 | self.assertEqual([n.title for n in path], ["Root", "A", "A1"]) |
| 141 | |
| 142 | def test_find_path_unknown(self): |
| 143 | tree = _make_tree() |
| 144 | self.assertEqual(tree.find_path(uuid4()), []) |
| 145 | |
| 146 | def test_retrieval_projection_is_not_a_tree_method(self): |
| 147 | tree = _make_tree() |
nothing calls this directly
no test coverage detected