cleanup() can be called after resolve and does not raise.
(tmp_path: Path)
| 89 | |
| 90 | |
| 91 | def test_cleanup_idempotent(tmp_path: Path) -> None: |
| 92 | """cleanup() can be called after resolve and does not raise.""" |
| 93 | (tmp_path / "a.md").write_text("x", encoding="utf-8") |
| 94 | handler = InputHandler() |
| 95 | handler.resolve(str(tmp_path / "a.md")) |
| 96 | handler.cleanup() |
| 97 | handler.cleanup() |
| 98 | |
| 99 | |
| 100 | def test_scp_url_is_git_url() -> None: |
nothing calls this directly
no test coverage detected