Pillow/Tests/test_image_getxmp.py
2020-12-27 22:24:38 -06:00

10 lines
233 B
Python

from PIL import Image
def test_getxmp():
im = Image.open("Tests/images/xmp_test.jpg")
type_repr = repr(type(im.getxmp()))
assert "dict" in type_repr
assert isinstance(im.getxmp()['Description'][0]['Version'], int)