def test_msgpacks_fail_to_load_invalid_data():
def default(ob):
return msgpack.ExtType(127, b"")
with pytest.raises(ValueError):
props.Msgpack().prepare_to_load(None, msgpack.packb(object(), default=default))
文章目录