summaryrefslogtreecommitdiff
path: root/docs/dev/testing.txt
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-09-13 18:22:15 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2004-09-13 18:22:15 +0000
commit94f831acca19eaab572dcae08f538f723ad7fad6 (patch)
treeff201531682847aaa51817f4e909f5263c0ee69e /docs/dev/testing.txt
parent7216ec8037c0fe25e23e228e01c5d1557ebcd53b (diff)
downloaddocutils-94f831acca19eaab572dcae08f538f723ad7fad6.tar.gz
removed section about ugly unittest output, because it's fixed in DocutilsTestSupport
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@2606 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docs/dev/testing.txt')
-rw-r--r--docs/dev/testing.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/dev/testing.txt b/docs/dev/testing.txt
index 4e4a04518..53faff37e 100644
--- a/docs/dev/testing.txt
+++ b/docs/dev/testing.txt
@@ -30,21 +30,6 @@ Often, it's easier to write the test first and then implement the
functionality required to make the test pass.
-Setting Up For Testing
-----------------------
-
-Recent versions of Python's ``unittest.py`` module have an annoying
-new "feature", where newlines in test failure output are displayed as
-``\n`` (two characters) instead of as actual newlines. This means
-that test failure output is unreadable and unuseable. Earlier
-versions didn't have this feature, and the output could easily be
-copied and pasted into test data modules. Revision `1.7.2.1 of
-unittest.py`__ works well. Download it, place it in the ``test/``
-directory, and enjoy much better output.
-
-__ http://cvs.sf.net/viewcvs.py/*checkout*/python/python/dist/src/Lib/unittest.py?rev=1.7.2.1
-
-
Writing New Tests
-----------------