diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-22 19:43:28 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-22 19:43:28 (GMT) |
commit | c6cbab0db4a3d3878eabc300c259ed74a5237ff0 (patch) | |
tree | 35bdd9a5e0f7d234aaf8d5963af7a02b8bda3bf7 /Lib/test | |
parent | 94607dd5ce69f1226b359b0b92ba93e0899c4d62 (diff) | |
download | cpython-c6cbab0db4a3d3878eabc300c259ed74a5237ff0.zip cpython-c6cbab0db4a3d3878eabc300c259ed74a5237ff0.tar.gz cpython-c6cbab0db4a3d3878eabc300c259ed74a5237ff0.tar.bz2 |
Added NDIFF_DIFF option.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_doctest.py | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index 6d9d745..969ee17 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -283,7 +283,7 @@ We'll simulate a __file__ attr that ends in pyc: 'test_doctest.py' >>> test.test_doctest.__file__ = old - + >>> e = tests[0].examples[0] >>> (e.source, e.want, e.lineno) @@ -931,7 +931,33 @@ and actual outputs to be displayed using a context diff: g <BLANKLINE> (1, 1) -""" + + +The NDIFF_DIFF flag causes failures to use the difflib.Differ algorithm +used by the popular ndiff.py utility. This does intraline difference +marking, as well as interline differences. + + >>> def f(x): + ... r''' + ... >>> print "a b c d e f g h i j k l m" + ... a b c d e f g h i j k 1 m + ... ''' + >>> test = doctest.DocTestFinder().find(f)[0] + >>> flags = doctest.NDIFF_DIFF + >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test) + ********************************************************************** + Line 2, in f + Failed example: + print "a b c d e f g h i j k l m" + Differences (ndiff with -expected +actual): + - a b c d e f g h i j k 1 m + ? ^ + + a b c d e f g h i j k l m + ? + ++ ^ + <BLANKLINE> + (1, 1) + """ + def option_directives(): r""" Tests of `DocTestRunner`'s option directive mechanism. @@ -1468,7 +1494,7 @@ def test_DocFileSuite(): def test_trailing_space_in_test(): """ Trailing spaces in expcted output are significant: - + >>> x, y = 'foo', '' >>> print x, y foo \n |