(tmp_path: Path, content: str)
| 12 | |
| 13 | |
| 14 | def write_myclirc(tmp_path: Path, content: str) -> str: |
| 15 | myclirc = tmp_path / 'myclirc' |
| 16 | myclirc.write_text(content, encoding='utf-8') |
| 17 | return str(myclirc) |
| 18 | |
| 19 | |
| 20 | def patch_constructor_side_effects(monkeypatch: pytest.MonkeyPatch) -> None: |
no outgoing calls
no test coverage detected