Пример #1
0
def test_authenticate_through_netrc_with_given_path():
    username, password = credentials.authenticate_through_netrc(NETRC)
    assert username == '*****@*****.**'
    assert password == 'secret'
def test_authenticate_through_netrc_with_given_path():
    username, password = credentials.authenticate_through_netrc(NETRC)
    assertEquals(username, '*****@*****.**')
    assertEquals(password, 'secret')
Пример #3
0
def test_authenticate_through_netrc_with_given_path():
    username, password = credentials.authenticate_through_netrc(NETRC)
    assert username == '*****@*****.**'
    assert password == 'secret'