Pillow/Tests/test_image_getxmp.py

10 lines
143 B
Python
Raw Normal View History

2020-12-28 04:52:46 +03:00
from .helper import hopper
2020-12-28 05:01:56 +03:00
2020-12-28 04:52:46 +03:00
def test_getxmp():
im = hopper()
2020-12-28 05:00:04 +03:00
type_repr = repr(type(im.getxmp()))
2020-12-28 05:49:28 +03:00
2020-12-28 05:09:10 +03:00
2020-12-28 05:00:04 +03:00
assert "dict" in type_repr