(self)
| 82 | return GraphNode(**defaults) |
| 83 | |
| 84 | def test_basic_function(self): |
| 85 | node = self._make_node() |
| 86 | text = _node_to_text(node) |
| 87 | assert "my_func" in text |
| 88 | assert "function" in text |
| 89 | assert "python" in text |
| 90 | |
| 91 | def test_method_with_parent(self): |
| 92 | node = self._make_node(parent_name="MyClass") |
nothing calls this directly
no test coverage detected