tests/test-doctest.py
author Cédric Duval <cedricduval@free.fr>
Sun, 17 May 2009 09:45:49 +0200
changeset 8471 e88cc16ba603
parent 7185 67ba74938b15
child 10413 e433002acb05
permissions -rw-r--r--
patchbomb: fix help to reflect actual operation In the body, the description is shown in its entirety, unstripped from what was already in the subject.

# this is hack to make sure no escape characters are inserted into the output
import os;
if 'TERM' in os.environ:
    del os.environ['TERM']
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 hgext.convert.cvsps
doctest.testmod(hgext.convert.cvsps)