Exemplo n.º 1
0
def test_github_login_nok(login, error):
    with pytest.raises(voluptuous.Invalid) as x:
        types.GitHubLogin(login)
    assert str(x.value) == error
Exemplo n.º 2
0
def test_github_login_ok(login):
    types.GitHubLogin(login)