예제 #1
0
def test_cacert_config_returns_a_string():
    assert isinstance(dumper.cacert_config(config, '.'), str)
예제 #2
0
def test_cacert_config_returns_false_if_no_cert_configured(mock_get):
    mock_get.return_value = ''
    assert not dumper.cacert_config(config, '.')
예제 #3
0
파일: test_dumper.py 프로젝트: zzaiin/Rucio
def test_cacert_config_returns_false_if_no_cert_configured():
    with stubbed(config.config_get, lambda _, __: ''):
        eq_(dumper.cacert_config(config, '.'), False)