Exemplo n.º 1
0
def test_purge_config():
    with fake_creds():
        os.makedirs(credentials.CONFIG_DIR, exist_ok=True)
        assert config_exists() == True
        purge_config()
        assert config_exists() == False
Exemplo n.º 2
0
def test_config_exists_true():
    with fake_creds():
        assert config_exists() == True
Exemplo n.º 3
0
def test_config_exists_true():
    with fake_creds('.jovian', 'credentials.json'):
        assert config_exists() == True
Exemplo n.º 4
0
def test_config_exits_false():
    with fake_creds():
        purge_config()
        assert config_exists() == False
Exemplo n.º 5
0
def test_config_exits_false():
    with fake_creds('.jovian-does-not-exist', 'credentials.json'):
        purge_config()
        assert config_exists() == False