Pillow/Tests/test_imageshow.py
2014-06-10 12:10:47 +03:00

19 lines
295 B
Python

from helper import unittest, PillowTestCase, tearDownModule
from PIL import Image
from PIL import ImageShow
class TestImageShow(PillowTestCase):
def test_sanity(self):
dir(Image)
dir(ImageShow)
pass
if __name__ == '__main__':
unittest.main()
# End of file