Pillow/PIL/tests.py

18 lines
282 B
Python
Raw Normal View History

import unittest
class PillowTests(unittest.TestCase):
"""
Can we start moving the test suite here?
"""
2013-09-28 17:46:00 +04:00
def test_suite_should_move_here(self):
"""
Great idea!
"""
assert True is True
if __name__ == '__main__':
unittest.main()