Searched refs:doctest (Results 1 - 25 of 85) sorted by relevance

1234

/external/python/cpython2/Lib/distutils/tests/
H A Dtest_versionpredicate.py6 import doctest namespace
10 return doctest.DocTestSuite(distutils.versionpredicate)
/external/python/cpython2/Lib/test/
H A Dsample_doctest.py75 import doctest namespace
76 return doctest.DocTestSuite()
H A Dtest_doctest2.py2 u"""A module to test whether doctest recognizes some 2.2 features,
121 from doctest import *
/external/python/cpython3/Lib/distutils/tests/
H A Dtest_versionpredicate.py6 import doctest namespace
10 return doctest.DocTestSuite(distutils.versionpredicate)
/external/python/cpython3/Lib/test/
H A Dsample_doctest.py75 import doctest namespace
76 return doctest.DocTestSuite()
H A Dtest_doctest2.py1 """A module to test whether doctest recognizes some 2.2 features,
120 from doctest import *
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_objects.py44 >>> print x.array._b_base_ # doctest: +ELLIPSIS
57 import unittest, doctest, sys namespace
63 failures, tests = doctest.testmod(ctypes.test.test_objects)
67 doctest.testmod(ctypes.test.test_objects)
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_objects.py44 >>> print(x.array._b_base_) # doctest: +ELLIPSIS
57 import unittest, doctest namespace
63 failures, tests = doctest.testmod(ctypes.test.test_objects)
67 doctest.testmod(ctypes.test.test_objects)
/external/python/cpython2/Doc/includes/
H A Dtest.py212 import doctest, __main__ namespace
213 doctest.testmod(__main__)
/external/python/cpython3/Doc/includes/
H A Dtest.py212 import doctest, __main__ namespace
213 doctest.testmod(__main__)
/external/mesa3d/src/gallium/docs/
H A DMakefile15 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
28 @echo " doctest to run all doctests embedded in the documentation (if enabled)"
86 doctest:
87 $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
89 "results in $(BUILDDIR)/doctest/output.txt."
H A Dmake.bat26 echo. doctest to run all doctests embedded in the documentation if enabled
105 if "%1" == "doctest" (
106 %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
109 results in %BUILDDIR%/doctest/output.txt.
/external/python/futures/docs/
H A DMakefile14 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
27 @echo " doctest to run all doctests embedded in the documentation (if enabled)"
85 doctest:
86 $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) _build/doctest
88 "results in _build/doctest/output.txt."
H A Dmake.bat25 echo. doctest to run all doctests embedded in the documentation if enabled
104 if "%1" == "doctest" (
105 %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% _build/doctest
108 results in _build/doctest/output.txt.
/external/fonttools/Lib/fontTools/misc/
H A DfixedTools.py64 import doctest namespace
65 doctest.testmod()
/external/fonttools/Tools/fontTools/misc/
H A DfixedTools.py64 import doctest namespace
65 doctest.testmod()
/external/markdown/markdown/extensions/
H A Dmeta.py89 import doctest namespace
90 doctest.testmod()
H A Dabbr.py94 import doctest namespace
95 doctest.testmod()
H A Dfenced_code.py116 import doctest namespace
117 doctest.testmod()
H A Dwikilinks.py153 import doctest namespace
154 doctest.testmod()
/external/python/cpython2/Demo/classes/
H A DRev.py91 import doctest, Rev namespace
92 return doctest.testmod(Rev)
H A DVec.py65 import doctest namespace
66 doctest.testmod()
/external/python/cpython3/Tools/demo/
H A Dvector.py71 import doctest namespace
72 doctest.testmod()
/external/fio/doc/
H A DMakefile43 @echo " doctest to run all doctests embedded in the documentation (if enabled)"
197 .PHONY: doctest
198 doctest:
199 $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
201 "results in $(BUILDDIR)/doctest/output.txt."
/external/python/cpython3/Lib/test/test_json/
H A D__init__.py3 import doctest namespace
51 suite.addTest(doctest.DocTestSuite(mod))

Completed in 5142 milliseconds

1234