コード例 #1
0
ファイル: test_types.py プロジェクト: napetrov/mergify-engine
def test_github_login_nok(login, error):
    with pytest.raises(voluptuous.Invalid) as x:
        types.GitHubLogin(login)
    assert str(x.value) == error
コード例 #2
0
ファイル: test_types.py プロジェクト: napetrov/mergify-engine
def test_github_login_ok(login):
    types.GitHubLogin(login)