Initial test case

This commit is contained in:
Stuart D. Gathman
2011-06-14 15:41:49 -04:00
parent dac0f36522
commit 52454945cc
2 changed files with 34 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import unittest
import testutil
def suite():
s = unittest.TestSuite()
s.addTest(testutil.suite())
return s
if __name__ == '__main__':
unittest.TextTestRunner().run(suite())