(tmp_path: Path, name: str, body: str)
| 23 | |
| 24 | |
| 25 | def _write(tmp_path: Path, name: str, body: str) -> Path: |
| 26 | p = tmp_path / name |
| 27 | p.write_text(body) |
| 28 | return p |
| 29 | |
| 30 | |
| 31 | def _raw_calls(result: dict) -> list[dict]: |
no outgoing calls
no test coverage detected