get_home_dir() still works if $HOME is not set
()
| 142 | |
| 143 | @with_environment |
| 144 | def test_get_home_dir_4(): |
| 145 | """get_home_dir() still works if $HOME is not set""" |
| 146 | |
| 147 | if 'HOME' in env: del env['HOME'] |
| 148 | # this should still succeed, but we don't care what the answer is |
| 149 | home = path.get_home_dir(False) |
| 150 | |
| 151 | @skip_win32_py38 |
| 152 | @with_environment |
nothing calls this directly
no outgoing calls
no test coverage detected