mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)
Alo use load_tests() for adding tests.
This commit is contained in:
parent
5e2c32e08e
commit
a856364cc9
17 changed files with 117 additions and 183 deletions
|
@ -1,5 +1,9 @@
|
|||
# Tests for extended unpacking, starred expressions.
|
||||
|
||||
import doctest
|
||||
import unittest
|
||||
|
||||
|
||||
doctests = """
|
||||
|
||||
Unpack tuple
|
||||
|
@ -392,10 +396,10 @@ Some size constraints (all fail.)
|
|||
|
||||
__test__ = {'doctests' : doctests}
|
||||
|
||||
def test_main(verbose=False):
|
||||
from test import support
|
||||
from test import test_unpack_ex
|
||||
support.run_doctest(test_unpack_ex, verbose)
|
||||
def load_tests(loader, tests, pattern):
|
||||
tests.addTest(doctest.DocTestSuite())
|
||||
return tests
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main(verbose=True)
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue