mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-14 19:36:38 +03:00
19 lines
275 B
Python
19 lines
275 B
Python
|
from helper import unittest, PillowTestCase
|
||
|
|
||
|
from PIL import Image
|
||
|
from PIL import ImageShow
|
||
|
|
||
|
|
||
|
class TestImage(PillowTestCase):
|
||
|
|
||
|
def test_sanity(self):
|
||
|
dir(Image)
|
||
|
dir(ImageShow)
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|
||
|
|
||
|
# End of file
|