Compare commits

..

1 Commits

1 changed files with 5 additions and 5 deletions

View File

@ -44,9 +44,9 @@ def test_initialize_without_configuration_should_only_set_default_environment():
module.initialize({})
assert {key: value for key, value in os.environ.items() if key.startswith('BORG_')} == {
'BORG_RELOCATED_REPO_ACCESS_IS_OK': 'no',
'BORG_UNKNOWN_UNENCRYPTED_REPO_ACCESS_IS_OK': 'no',
'BORG_CHECK_I_KNOW_WHAT_I_AM_DOING': 'no',
'BORG_RELOCATED_REPO_ACCESS_IS_OK': 'NO',
'BORG_UNKNOWN_UNENCRYPTED_REPO_ACCESS_IS_OK': 'NO',
'BORG_CHECK_I_KNOW_WHAT_I_AM_DOING': 'NO',
}
finally:
os.environ = orig_environ
@ -58,7 +58,7 @@ def test_initialize_with_relocated_repo_access_should_override_default():
try:
os.environ = {}
module.initialize({'relocated_repo_access_is_ok': True})
assert os.environ.get('BORG_RELOCATED_REPO_ACCESS_IS_OK') == 'yes'
assert os.environ.get('BORG_RELOCATED_REPO_ACCESS_IS_OK') == 'YES'
finally:
os.environ = orig_environ
@ -68,7 +68,7 @@ def test_initialize_with_check_i_know_what_i_am_doing_should_override_default():
try:
os.environ = {}
module.initialize({'check_i_know_what_i_am_doing': True})
assert os.environ.get('BORG_CHECK_I_KNOW_WHAT_I_AM_DOING') == 'yes'
assert os.environ.get('BORG_CHECK_I_KNOW_WHAT_I_AM_DOING') == 'YES'
finally:
os.environ = orig_environ