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