From 155a2554a25bb437b6941ce673b37aed6f283fd2 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 1 Jul 2005 03:42:16 +0000 Subject: [PATCH] Initial revision --- test/testbase.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/testbase.py diff --git a/test/testbase.py b/test/testbase.py new file mode 100644 index 0000000000..5a65fe02d8 --- /dev/null +++ b/test/testbase.py @@ -0,0 +1,12 @@ +import unittest + + +class PersistTest(unittest.TestCase): + def __init__(self, *args, **params): + unittest.TestCase.__init__(self, *args, **params) + + +def runTests(suite): + runner = unittest.TextTestRunner(verbosity = 2, descriptions =1) + runner.run(suite) + -- 2.47.2