Commit 5d3ccf8c authored by Jeremy Hylton's avatar Jeremy Hylton

Simplify test_suite().

parent b4902e1c
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""XXX short summary goes here. """XXX short summary goes here.
$Id: test_datamanageradapter.py,v 1.2 2004/02/19 02:59:10 jeremy Exp $ $Id: test_datamanageradapter.py,v 1.3 2004/03/11 15:57:57 jeremy Exp $
""" """
import unittest import unittest
from doctest import DocTestSuite from doctest import DocTestSuite
...@@ -803,8 +803,7 @@ def test_tpc_abort_w_subtransactions_featuring_subtransaction_abort(): ...@@ -803,8 +803,7 @@ def test_tpc_abort_w_subtransactions_featuring_subtransaction_abort():
""" """
def test_suite(): def test_suite():
return unittest.TestSuite(( return DocTestSuite()
DocTestSuite(),
))
if __name__ == '__main__': unittest.main() if __name__ == '__main__':
unittest.main()
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