(monkeypatch)
| 1185 | |
| 1186 | |
| 1187 | def test_homedir_from_HOME(monkeypatch): |
| 1188 | path = os.getcwd() |
| 1189 | monkeypatch.setenv("HOME", path) |
| 1190 | assert local._gethomedir() == local(path) |
| 1191 | |
| 1192 | |
| 1193 | def test_homedir_not_exists(monkeypatch): |
nothing calls this directly
no test coverage detected