(monkeypatch)
| 1191 | |
| 1192 | |
| 1193 | def test_homedir_not_exists(monkeypatch): |
| 1194 | monkeypatch.delenv("HOME", raising=False) |
| 1195 | monkeypatch.delenv("HOMEDRIVE", raising=False) |
| 1196 | homedir = local._gethomedir() |
| 1197 | assert homedir is None |
| 1198 | |
| 1199 | |
| 1200 | def test_samefile(tmpdir): |
nothing calls this directly
no test coverage detected