(self, path="/test/file.py")
| 19 | Path(self.tmp.name).unlink(missing_ok=True) |
| 20 | |
| 21 | def _make_file_node(self, path="/test/file.py"): |
| 22 | return NodeInfo( |
| 23 | kind="File", name=path, file_path=path, |
| 24 | line_start=1, line_end=100, language="python", |
| 25 | ) |
| 26 | |
| 27 | def _make_func_node(self, name="my_func", path="/test/file.py", parent=None, is_test=False): |
| 28 | return NodeInfo( |
no test coverage detected