Pillow/test/tests.py
2014-06-03 22:38:56 +03:00

20 lines
309 B
Python

from tester import unittest
class SomeTests(unittest.TestCase):
"""
Can we start moving the test suite here?
"""
def test_suite_should_move_here(self):
"""
Great idea!
"""
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()
# End of file