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)
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)