2014-07-07 21:03:50 +04:00
|
|
|
from helper import unittest, PillowTestCase
|
2012-10-24 17:24:26 +04:00
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
# sample ppm stream
|
2015-04-24 11:24:52 +03:00
|
|
|
test_file = "Tests/images/hopper.psd"
|
|
|
|
data = open(test_file, "rb").read()
|
2012-10-24 17:24:26 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
class TestImagePsd(PillowTestCase):
|
|
|
|
|
|
|
|
def test_sanity(self):
|
2015-04-24 11:24:52 +03:00
|
|
|
im = Image.open(test_file)
|
2014-06-10 13:10:47 +04:00
|
|
|
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
|