コード例 #1
0
ファイル: test_client.py プロジェクト: takos22/codingame
def test_client_get_clash_of_code_error(client: SyncClient):
    with pytest.raises(ValueError):
        client.get_clash_of_code("0")

    with pytest.raises(exceptions.ClashOfCodeNotFound):
        client.get_clash_of_code("0" * 7 + "a" * 32)
コード例 #2
0
ファイル: test_client.py プロジェクト: takos22/codingame
def test_client_get_clash_of_code(client: SyncClient):
    clash_of_code = client.get_clash_of_code(
        os.environ.get("TEST_CLASHOFCODE_PUBLIC_HANDLE")
    )
    assert isinstance(clash_of_code, ClashOfCode)