Pillow/Tests/test_file_mic.py

24 lines
628 B
Python
Raw Normal View History

2015-07-03 08:03:25 +03:00
from helper import unittest, PillowTestCase
from PIL import MicImagePlugin
class TestFileMic(PillowTestCase):
def test_invalid_file(self):
2016-01-23 05:46:36 +03:00
# Test an invalid OLE file
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
lambda: MicImagePlugin.MicImageFile(invalid_file))
2015-07-03 08:03:25 +03:00
2016-01-23 05:46:36 +03:00
# Test a valid OLE file, but not a MIC file
ole_file = "Tests/images/test-ole-file.doc"
self.assertRaises(SyntaxError,
lambda: MicImagePlugin.MicImageFile(ole_file))
2015-07-03 08:03:25 +03:00
if __name__ == '__main__':
unittest.main()
# End of file