Pillow/Tests/test_file_psd.py

24 lines
474 B
Python
Raw Normal View History

2014-06-10 13:10:47 +04:00
from helper import unittest, PillowTestCase, tearDownModule
2012-10-24 17:24:26 +04:00
from PIL import Image
# sample ppm stream
file = "Tests/images/lena.psd"
2012-10-24 17:24:26 +04:00
data = open(file, "rb").read()
2014-06-10 13:10:47 +04:00
class TestImagePsd(PillowTestCase):
def test_sanity(self):
im = Image.open(file)
im.load()
self.assertEqual(im.mode, "RGB")
self.assertEqual(im.size, (128, 128))
self.assertEqual(im.format, "PSD")
if __name__ == '__main__':
unittest.main()
# End of file