Searched defs:doctest (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium-trace/catapult/third_party/WebOb/docs/
H A Ddoctests.py2 import doctest namespace
5 flags = doctest.ELLIPSIS|doctest.NORMALIZE_WHITESPACE
7 doctest.DocFileSuite('test_request.txt', optionflags=flags),
8 doctest.DocFileSuite('test_response.txt', optionflags=flags),
9 doctest.DocFileSuite('test_dec.txt', optionflags=flags),
10 doctest.DocFileSuite('do-it-yourself.txt', optionflags=flags),
11 doctest.DocFileSuite('file-example.txt', optionflags=flags),
12 doctest.DocFileSuite('index.txt', optionflags=flags),
13 doctest
[all...]
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/
H A Dtest_docs.py11 import doctest namespace
18 doctest.ELLIPSIS |
19 doctest.NORMALIZE_WHITESPACE |
20 doctest.REPORT_NDIFF)
36 # doctest.DocFileSuite(*doctest_files, **kwargs)))
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
H A Dall_tests.py3 import doctest namespace
12 doctest_suite = doctest.DocFileSuite(
13 *glob('*.doctest'),
14 **{'optionflags': doctest.REPORT_ONLY_FIRST_FAILURE}
H A Drun-doctest.py2 import doctest namespace
10 doctest.testfile(
12 optionflags=doctest.REPORT_ONLY_FIRST_FAILURE
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
H A Dcommon.py183 import doctest namespace
184 doctest.testmod()
H A Dparallel.py83 import doctest namespace
86 (failures, tests) = doctest.testmod()
H A D__init__.py38 # Do doctest if we're run directly
40 import doctest namespace
41 doctest.testmod()
H A Dprime.py156 import doctest namespace
159 (failures, tests) = doctest.testmod()
H A Dtransform.py218 import doctest namespace
219 doctest.testmod()
/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/chromium-trace/catapult/third_party/Paste/paste/auth/
H A Dform.py148 import doctest namespace
149 doctest.testmod(optionflags=doctest.ELLIPSIS)
H A Dmulti.py77 import doctest namespace
78 doctest.testmod(optionflags=doctest.ELLIPSIS)
H A Dbasic.py121 import doctest namespace
122 doctest.testmod(optionflags=doctest.ELLIPSIS)
/external/chromium-trace/catapult/third_party/Paste/paste/exceptions/
H A Dserial_number_generator.py89 # doctest tests:
127 import doctest namespace
128 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/autotest/frontend/afe/
H A Dtest.py2 import os, doctest, glob, sys namespace
7 # doctest takes a copy+paste log of a Python interactive session, runs a Python
12 # http://www.python.org/doc/2.4.3/lib/module-doctest.html for more details.
14 # In this file, we run doctest on all files found in the doctests/ directory.
63 failures, test_count = doctest.testmod(module)
67 failures, test_count = doctest.testfile(path,
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
H A Dfake_filesystem_glob.py114 import doctest namespace
116 return doctest.testmod(fake_filesystem_glob)
H A Dfake_filesystem_glob_test.py19 import doctest namespace
65 self.assertFalse(doctest.testmod(fake_filesystem_glob)[0])
/external/chromium-trace/catapult/third_party/Paste/paste/util/
H A Ddateinterval.py103 import doctest namespace
104 doctest.testmod()
/external/chromium-trace/catapult/third_party/Paste/tests/
H A Dtest_doctests.py1 import doctest namespace
28 options = doctest.ELLIPSIS|doctest.REPORT_ONLY_FIRST_FAILURE
38 failure, total = doctest.testfile(
49 failure, total = doctest.testmod(
55 import doctest namespace
60 doctest.testfile(filename, module_relative=False)
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
H A Dfake_filesystem_glob.py114 import doctest namespace
116 return doctest.testmod(fake_filesystem_glob)

Completed in 661 milliseconds

123