mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
20 lines
423 B
Python
20 lines
423 B
Python
from helper import unittest, PillowTestCase
|
|
|
|
from PIL import BufrStubImagePlugin
|
|
|
|
|
|
class TestFileBufrStub(PillowTestCase):
|
|
|
|
def test_invalid_file(self):
|
|
invalid_file = "Tests/images/flower.jpg"
|
|
|
|
self.assertRaises(SyntaxError,
|
|
lambda:
|
|
BufrStubImagePlugin.BufrStubImageFile(invalid_file))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
# End of file
|