()
| 49 | |
| 50 | |
| 51 | def test_adheres_to_xdg_specification(): |
| 52 | with mock.patch.dict( |
| 53 | os.environ, {'XDG_CACHE_HOME': '/tmp/fakehome'}, |
| 54 | ): |
| 55 | ret = _get_default_directory() |
| 56 | expected = os.path.realpath('/tmp/fakehome/pre-commit') |
| 57 | assert ret == expected |
| 58 | |
| 59 | |
| 60 | def test_uses_environment_variable_when_present(): |
nothing calls this directly
no test coverage detected