Pillow/Tests/test_file_sgi.py

40 lines
993 B
Python
Raw Normal View History

2014-07-16 22:28:17 +04:00
from helper import unittest, PillowTestCase
from PIL import Image
class TestFileSgi(PillowTestCase):
def test_rgb(self):
# Arrange
# Created with ImageMagick then renamed:
# convert hopper.ppm hopper.sgi
test_file = "Tests/images/hopper.rgb"
2014-07-16 22:28:17 +04:00
# Act / Assert
self.assertRaises(ValueError, lambda: Image.open(test_file))
2014-07-16 22:28:17 +04:00
def test_l(self):
# Arrange
# Created with ImageMagick then renamed:
# convert hopper.ppm -monochrome hopper.sgi
test_file = "Tests/images/hopper.bw"
2014-07-16 22:28:17 +04:00
# Act / Assert
self.assertRaises(ValueError, lambda: Image.open(test_file))
2014-07-16 22:28:17 +04:00
def test_rgba(self):
# Arrange
# Created with ImageMagick:
# convert transparent.png transparent.sgi
test_file = "Tests/images/transparent.sgi"
# Act / Assert
self.assertRaises(ValueError, lambda: Image.open(test_file))
2014-07-16 22:28:17 +04:00
if __name__ == '__main__':
unittest.main()
# End of file