(monkeypatch: pytest.MonkeyPatch)
| 82 | |
| 83 | |
| 84 | def test_safe_join_not_windows_special(monkeypatch: pytest.MonkeyPatch) -> None: |
| 85 | monkeypatch.setattr("os.name", "posix") |
| 86 | assert safe_join("a", "CON") == "a/CON" |
nothing calls this directly
no test coverage detected