Commit b26a02e9 authored by Jeremy Hylton's avatar Jeremy Hylton

Add test_suite() function

parent 18ef1f89
......@@ -76,8 +76,11 @@ class SubtransTests:
class AllTests(TransactionTestBase, BasicTests, SubtransTests):
pass
def test_suite():
return unittest.makeSuite(AllTests, 'check')
def main():
tests = unittest.makeSuite(AllTests, 'check')
tests = test_suite()
runner = unittest.TextTestRunner()
runner.run(tests)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment