File diff 91a436abd521 → d8b0a56fb4c6
tests/test_config.py
Show inline comments
...
 
@@ -73,13 +73,13 @@ def update_environ(**kwargs):
 
    _update_environ(revert)
 

	
 
def test_repository_from_environment():
 
    with update_environ(CONSERVANCY_REPOSITORY='/usr/local'):
 
        config = config_mod.Config()
 
        assert config.repository_path().parts == ('/', 'usr', 'local')
 
    config = config_mod.Config()
 
    assert config.repository_path() == testutil.test_path('repository')
 

	
 
def test_no_repository():
 
    config = config_mod.Config()
 
    assert config.repository_path() is None
 
    with update_environ(CONSERVANCY_REPOSITORY=None):
 
        config = config_mod.Config()
 
        assert config.repository_path() is None
 

	
 
def test_no_rt_credentials():
 
    with update_environ(HOME=testutil.TESTS_DIR):