(path: Path, text: str = "")
| 23 | |
| 24 | |
| 25 | def write(path: Path, text: str = "") -> Path: |
| 26 | path.parent.mkdir(parents=True, exist_ok=True) |
| 27 | path.write_text(text, encoding="utf-8") |
| 28 | return path |
| 29 | |
| 30 | |
| 31 | class ReferenceManagerTests(unittest.TestCase): |
no outgoing calls
no test coverage detected