cti-python-stix2/stix2/test/v20/test_pickle.py

18 lines
362 B
Python
Raw Normal View History

2018-06-06 21:30:45 +02:00
import pickle
import stix2
def test_pickling():
"""
Ensure a pickle/unpickle cycle works okay.
"""
identity = stix2.v20.Identity(
2018-06-06 21:30:45 +02:00
id="identity--d66cb89d-5228-4983-958c-fa84ef75c88c",
name="alice",
description="this is a pickle test",
identity_class="some_class",
2018-06-06 21:30:45 +02:00
)
pickle.loads(pickle.dumps(identity))