HomeSort by relevance Sort by last modified time
    Searched refs:doctest (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/
test_docs.py 11 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/WebOb/docs/
doctests.py 2 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.DocFileSuite('reference.txt', optionflags=flags)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
run-doctest.py 2 import doctest namespace
10 doctest.testfile(
12 optionflags=doctest.REPORT_ONLY_FIRST_FAILURE
all_tests.py 3 import doctest namespace
12 doctest_suite = doctest.DocFileSuite(
13 *glob('*.doctest'),
14 **{'optionflags': doctest.REPORT_ONLY_FIRST_FAILURE}
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_syntax.py 8 SyntaxError: name 'x' is local and global (<doctest test.test_syntax[0]>, line 1)
21 doctest. Since all the code comes from the same module, a suffix like
32 File "<doctest test.test_syntax[1]>", line 1
37 File "<doctest test.test_syntax[2]>", line 1
46 File "<doctest test.test_syntax[3]>", line 1
51 File "<doctest test.test_syntax[4]>", line 1
56 File "<doctest test.test_syntax[5]>", line 1
61 File "<doctest test.test_syntax[6]>", line 1
66 File "<doctest test.test_syntax[7]>", line 1
71 File "<doctest test.test_syntax[8]>", line
    [all...]
sample_doctest.py 75 import doctest namespace
76 return doctest.DocTestSuite()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_syntax.py 8 SyntaxError: name 'x' is local and global (<doctest test.test_syntax[0]>, line 1)
21 doctest. Since all the code comes from the same module, a suffix like
32 File "<doctest test.test_syntax[1]>", line 1
37 File "<doctest test.test_syntax[2]>", line 1
46 File "<doctest test.test_syntax[3]>", line 1
51 File "<doctest test.test_syntax[4]>", line 1
56 File "<doctest test.test_syntax[5]>", line 1
61 File "<doctest test.test_syntax[6]>", line 1
66 File "<doctest test.test_syntax[7]>", line 1
71 File "<doctest test.test_syntax[8]>", line
    [all...]
sample_doctest.py 75 import doctest namespace
76 return doctest.DocTestSuite()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_syntax.py 8 SyntaxError: name 'x' is local and global (<doctest test.test_syntax[0]>, line 1)
21 doctest. Since all the code comes from the same module, a suffix like
32 File "<doctest test.test_syntax[1]>", line 1
37 File "<doctest test.test_syntax[2]>", line 1
46 File "<doctest test.test_syntax[3]>", line 1
51 File "<doctest test.test_syntax[4]>", line 1
56 File "<doctest test.test_syntax[5]>", line 1
61 File "<doctest test.test_syntax[6]>", line 1
66 File "<doctest test.test_syntax[7]>", line 1
71 File "<doctest test.test_syntax[8]>", line
    [all...]
sample_doctest.py 75 import doctest namespace
76 return doctest.DocTestSuite()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_syntax.py 8 SyntaxError: name 'x' is local and global (<doctest test.test_syntax[0]>, line 1)
21 doctest. Since all the code comes from the same module, a suffix like
32 File "<doctest test.test_syntax[1]>", line 1
37 File "<doctest test.test_syntax[2]>", line 1
46 File "<doctest test.test_syntax[3]>", line 1
51 File "<doctest test.test_syntax[4]>", line 1
56 File "<doctest test.test_syntax[5]>", line 1
61 File "<doctest test.test_syntax[6]>", line 1
66 File "<doctest test.test_syntax[7]>", line 1
71 File "<doctest test.test_syntax[8]>", line
    [all...]
sample_doctest.py 75 import doctest namespace
76 return doctest.DocTestSuite()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_versionpredicate.py 6 import doctest namespace
10 return doctest.DocTestSuite(distutils.versionpredicate)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_versionpredicate.py 6 import doctest namespace
10 return doctest.DocTestSuite(distutils.versionpredicate)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
__init__.py 38 # Do doctest if we're run directly
40 import doctest namespace
41 doctest.testmod()
parallel.py 83 import doctest namespace
86 (failures, tests) = doctest.testmod()
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_doctests.py 1 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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_objects.py 44 >>> print x.array._b_base_ # doctest: +ELLIPSIS
57 import unittest, doctest, sys namespace
66 doctest.testmod(ctypes.test.test_objects)
70 doctest.testmod(ctypes.test.test_objects)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_objects.py 44 >>> print x.array._b_base_ # doctest: +ELLIPSIS
57 import unittest, doctest, sys namespace
66 doctest.testmod(ctypes.test.test_objects)
70 doctest.testmod(ctypes.test.test_objects)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_objects.py 44 >>> print x.array._b_base_ # doctest: +ELLIPSIS
57 import unittest, doctest, sys namespace
66 doctest.testmod(ctypes.test.test_objects)
70 doctest.testmod(ctypes.test.test_objects)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_objects.py 44 >>> print x.array._b_base_ # doctest: +ELLIPSIS
57 import unittest, doctest, sys namespace
66 doctest.testmod(ctypes.test.test_objects)
70 doctest.testmod(ctypes.test.test_objects)
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
Makefile 15 .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."
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/
Makefile 15 .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."
  /external/mesa3d/src/gallium/docs/
Makefile 15 .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."
  /external/fonttools/Lib/fontTools/misc/
fixedTools.py 64 import doctest namespace
65 doctest.testmod()

Completed in 412 milliseconds

1 2 3 4 5 6 7