(tmp_path: Path, code: str)
| 7 | |
| 8 | |
| 9 | def _write_py(tmp_path: Path, code: str) -> Path: |
| 10 | p = tmp_path / "sample.py" |
| 11 | p.write_text(textwrap.dedent(code)) |
| 12 | return p |
| 13 | |
| 14 | |
| 15 | def test_module_docstring_extracted(tmp_path): |
no outgoing calls
no test coverage detected