Pillow/Tests/test_image_getxmp.py
2020-12-27 21:39:36 -06:00

9 lines
162 B
Python

from PIL import Image
def test_getxmp():
im = Image.open("Tests/images/hopper.jpg")
type_repr = repr(type(im.getxmp()))
assert "dict" in type_repr