(self)
| 105 | n.title = "z" # type: ignore[misc] |
| 106 | |
| 107 | def test_retrieval_projection_is_not_a_node_method(self): |
| 108 | n = TreeNode(title="Methodology", summary="We use X to do Y.") |
| 109 | self.assertFalse(hasattr(n, "embedding_text")) |
| 110 | |
| 111 | |
| 112 | class TreeKnowledgeTests(unittest.TestCase): |
nothing calls this directly
no test coverage detected