summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-03-18 17:09:50 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-03-18 17:09:50 (GMT)
commitf0efea0841a825b8aa68e2ff97ff24ae31037f80 (patch)
tree8329160e08683addad48ae5ef3c31b2b7ac07bd8 /Lib
parentf3a1b6efe0b01022ec20b189bb85430e2d8051f5 (diff)
downloadcpython-f0efea0841a825b8aa68e2ff97ff24ae31037f80.zip
cpython-f0efea0841a825b8aa68e2ff97ff24ae31037f80.tar.gz
cpython-f0efea0841a825b8aa68e2ff97ff24ae31037f80.tar.bz2
Issue #17463: Fix test discovery for test_pdb.py
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_pdb.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py
index 4fb07a3..03084e4 100644
--- a/Lib/test/test_pdb.py
+++ b/Lib/test/test_pdb.py
@@ -1,5 +1,6 @@
# A test suite for pdb; not very comprehensive at the moment.
+import doctest
import imp
import pdb
import sys
@@ -701,11 +702,11 @@ class PdbTestCase(unittest.TestCase):
support.unlink(support.TESTFN)
-def test_main():
+def load_tests(*args):
from test import test_pdb
- support.run_doctest(test_pdb, verbosity=True)
- support.run_unittest(PdbTestCase)
+ suites = [unittest.makeSuite(PdbTestCase), doctest.DocTestSuite(test_pdb)]
+ return unittest.TestSuite(suites)
if __name__ == '__main__':
- test_main()
+ unittest.main()