(tmp_path, name: str, body: str)
| 17 | |
| 18 | |
| 19 | def _write(tmp_path, name: str, body: str) -> str: |
| 20 | p = tmp_path / name |
| 21 | p.write_text(body, encoding="utf-8") |
| 22 | return str(p) |
| 23 | |
| 24 | |
| 25 | # ---------- brace-balance -------------------------------------------------- |
no outgoing calls
no test coverage detected