Searched refs:DocTestSuite (Results 1 - 25 of 31) sorted by relevance
12
/third_party/python/Lib/test/ |
H A D | test_threading_local.py | 3 from doctest import DocTestSuite namespace 221 tests.addTest(DocTestSuite('_threading_local')) 228 tests.addTests(DocTestSuite('_threading_local',
|
H A D | sample_doctest.py | 76 return doctest.DocTestSuite()
|
H A D | test_extcall.py | 528 tests.addTest(doctest.DocTestSuite())
|
H A D | test_unpack_ex.py | 400 tests.addTest(doctest.DocTestSuite())
|
H A D | test_listcomps.py | 152 tests.addTest(doctest.DocTestSuite())
|
H A D | test_setcomps.py | 155 tests.addTest(doctest.DocTestSuite())
|
H A D | test_metaclass.py | 264 tests.addTest(doctest.DocTestSuite())
|
H A D | test_genexps.py | 289 tests.addTest(doctest.DocTestSuite())
|
H A D | test_unpack.py | 150 tests.addTest(doctest.DocTestSuite())
|
H A D | test_doctest.py | 2165 """DocTestSuite creates a unittest test suite from a doctest. 2172 >>> suite = doctest.DocTestSuite(test.sample_doctest) 2178 >>> suite = doctest.DocTestSuite('test.sample_doctest') 2184 >>> suite = doctest.DocTestSuite('test.sample_doctest_no_doctests') 2190 >>> suite = doctest.DocTestSuite('test.sample_doctest_no_docstrings') 2203 >>> suite = doctest.DocTestSuite('test.sample_doctest', 2211 >>> suite = doctest.DocTestSuite('test.sample_doctest_no_docstrings', 2220 >>> suite = doctest.DocTestSuite('test.sample_doctest', globs={}) 2227 >>> suite = doctest.DocTestSuite('test.sample_doctest', 2235 >>> suite = doctest.DocTestSuite('tes [all...] |
H A D | test_descrtut.py | 477 tests.addTest(doctest.DocTestSuite())
|
H A D | test_pickletools.py | 99 tests.addTest(doctest.DocTestSuite(pickletools))
|
H A D | test_cmd.py | 248 tests.addTest(doctest.DocTestSuite())
|
H A D | test_syntax.py | 2223 tests.addTest(doctest.DocTestSuite())
|
H A D | test_http_cookies.py | 484 tests.addTest(doctest.DocTestSuite(cookies))
|
H A D | test_heapq.py | 44 tests.addTests(doctest.DocTestSuite(py_heapq,
|
H A D | test_code.py | 803 tests.addTest(doctest.DocTestSuite())
|
H A D | test_pdb.py | 2422 tests.addTest(doctest.DocTestSuite(test_pdb))
|
H A D | test_difflib.py | 555 tests.addTest(doctest.DocTestSuite(difflib))
|
H A D | test_pickle.py | 544 tests.addTest(doctest.DocTestSuite())
|
H A D | test_generators.py | 2439 tests.addTest(doctest.DocTestSuite())
|
H A D | test_builtin.py | 2497 from doctest import DocTestSuite namespace 2498 tests.addTest(DocTestSuite(builtins))
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_versionpredicate.py | 10 return doctest.DocTestSuite(distutils.versionpredicate)
|
/third_party/python/Lib/test/test_json/ |
H A D | __init__.py | 53 suite.addTest(doctest.DocTestSuite(mod))
|
/third_party/python/Lib/ |
H A D | doctest.py | 85 'DocTestSuite', 2340 self.skipTest("DocTestSuite will not work with -O2 and above") 2357 def DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None, function
|
Completed in 25 milliseconds
12