Pillow/Tests/test_file_gribstub.py

24 lines
571 B
Python
Raw Normal View History

2017-03-01 12:20:18 +03:00
from helper import unittest, PillowTestCase, hopper
2015-07-03 08:03:25 +03:00
from PIL import GribStubImagePlugin
class TestFileGribStub(PillowTestCase):
def test_invalid_file(self):
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
lambda:
GribStubImagePlugin.GribStubImageFile(invalid_file))
2015-07-03 08:03:25 +03:00
2017-03-01 12:20:18 +03:00
def test_save(self):
im = hopper()
tmpfile = self.tempfile("temp.grib")
self.assertRaises(IOError, lambda: im.save(tmpfile))
2015-07-03 08:03:25 +03:00
if __name__ == '__main__':
unittest.main()