mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-14 21:56:56 +03:00
10 lines
143 B
Python
10 lines
143 B
Python
from .helper import hopper
|
|
|
|
|
|
def test_getxmp():
|
|
im = hopper()
|
|
type_repr = repr(type(im.getxmp()))
|
|
|
|
|
|
assert "dict" in type_repr
|