Pillow/Tests/test_imageshow.py

16 lines
251 B
Python

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