예제 #1
0
파일: test_auth.py 프로젝트: rkm/twine
def test_no_password_non_interactive_aborts(config):
    with pytest.raises(exceptions.NonInteractive):
        auth.Private(config, cred("user")).password
예제 #2
0
파일: test_auth.py 프로젝트: hugovk/twine
def test_no_username_non_interactive_aborts(config):
    with pytest.raises(exceptions.NonInteractive):
        auth.Private(config, auth.CredentialInput("user")).password
예제 #3
0
파일: test_auth.py 프로젝트: rkm/twine
def test_get_password_keyring_missing_non_interactive_aborts(
        entered_username, keyring_missing_get_credentials, config):
    with pytest.raises(exceptions.NonInteractive):
        auth.Private(config, cred("user")).password
예제 #4
0
파일: test_auth.py 프로젝트: hugovk/twine
def test_get_username_keyring_missing_non_interactive_aborts(
        entered_username, keyring_missing_get_credentials, config):
    with pytest.raises(exceptions.NonInteractive):
        auth.Private(config, auth.CredentialInput()).username