(tmp_path, monkeypatch)
| 27 | |
| 28 | |
| 29 | def test_override_missing_file_raises(tmp_path, monkeypatch) -> None: |
| 30 | monkeypatch.setenv("CMDOP_CORE_BINARY", str(tmp_path / "nope")) |
| 31 | with pytest.raises(FileNotFoundError, match="points at a missing file"): |
| 32 | locate_binary() |
| 33 | |
| 34 | |
| 35 | def test_no_override_no_baked_binary_raises_actionable(monkeypatch) -> None: |
nothing calls this directly
no test coverage detected