Pillow/Tests/test_file_fpx.py

22 lines
598 B
Python
Raw Normal View History

2015-07-03 08:03:25 +03:00
from helper import unittest, PillowTestCase
from PIL import FpxImagePlugin
class TestFileFpx(PillowTestCase):
def test_invalid_file(self):
2016-01-23 05:50:17 +03:00
# Test an invalid OLE file
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
2017-09-01 14:05:40 +03:00
FpxImagePlugin.FpxImageFile, invalid_file)
2015-07-03 08:03:25 +03:00
2016-01-23 05:50:17 +03:00
# Test a valid OLE file, but not an FPX file
ole_file = "Tests/images/test-ole-file.doc"
self.assertRaises(SyntaxError,
2017-09-01 14:05:40 +03:00
FpxImagePlugin.FpxImageFile, ole_file)
2016-01-23 05:50:17 +03:00
2015-07-03 08:03:25 +03:00
if __name__ == '__main__':
unittest.main()