mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-03 22:06:18 +03:00
9 lines
162 B
Python
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
|