Make test runnable on its own

This commit is contained in:
hugovk 2014-06-24 10:01:43 +03:00
parent 540477b066
commit 494bffd216

View File

@ -168,4 +168,8 @@ class MorphTests(PillowTestCase):
self.assertEqual(len(coords), 4)
self.assertEqual(tuple(coords), ((2, 2), (4, 2), (2, 4), (4, 4)))
if __name__ == '__main__':
unittest.main()
# End of file