test-doctest: test the modules that contains doctests stable
authorMads Kiilerich <mads@kiilerich.com>
Fri, 01 Oct 2010 00:48:51 +0200
branchstable
changeset 12594 bb324910e40a
parent 12593 01c373762b76
child 12595 0f83a402faa0
child 12597 10dcfba4f16d
test-doctest: test the modules that contains doctests
tests/test-doctest.py
--- a/tests/test-doctest.py	Fri Oct 01 00:48:50 2010 +0200
+++ b/tests/test-doctest.py	Fri Oct 01 00:48:51 2010 +0200
@@ -5,18 +5,13 @@
 import doctest
 
 import mercurial.changelog
-# test doctest from changelog
-
 doctest.testmod(mercurial.changelog)
 
-import mercurial.httprepo
-doctest.testmod(mercurial.httprepo)
-
-import mercurial.util
-doctest.testmod(mercurial.util)
-
 import mercurial.dagparser
 doctest.testmod(mercurial.dagparser, optionflags=doctest.NORMALIZE_WHITESPACE)
 
+import mercurial.url
+doctest.testmod(mercurial.url)
+
 import hgext.convert.cvsps
 doctest.testmod(hgext.convert.cvsps)