| Conditions | 1 | 
| Total Lines | 5 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | from __future__ import absolute_import  | 
            ||
| 32 | def test_application_directory_override_invalid():  | 
            ||
| 33 | os.environ['ELODIE_APPLICATION_DIRECTORY'] = '/foo/bar'  | 
            ||
| 34 | reload(constants)  | 
            ||
| 35 |     expected_path = '{}/.elodie'.format(os.path.expanduser('~')) | 
            ||
| 36 | assert constants.application_directory == expected_path, constants.application_directory  | 
            ||
| 37 | |||
| 44 |