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