| Conditions | 1 | 
| Total Lines | 6 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | from __future__ import absolute_import  | 
            ||
| 38 | def test_application_directory_override_valid():  | 
            ||
| 39 | os.environ['ELODIE_APPLICATION_DIRECTORY'] = os.getcwd()  | 
            ||
| 40 | reload(constants)  | 
            ||
| 41 | expected_path = os.getcwd()  | 
            ||
| 42 | print expected_path  | 
            ||
| 43 | assert constants.application_directory == expected_path, constants.application_directory  | 
            ||
| 44 |