mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
13 lines
335 B
Python
13 lines
335 B
Python
"""
|
|
Make sure that the various IK classes can be successfully serialized and
|
|
deserialized. This is important when using IK with Celery.
|
|
|
|
"""
|
|
|
|
from .utils import create_photo, pickleback
|
|
|
|
|
|
def test_imagespecfield():
|
|
instance = create_photo('pickletest2.jpg')
|
|
thumbnail = pickleback(instance.thumbnail)
|
|
thumbnail.source_file
|