tests/test-doctest.py
author Shun-ichi GOTO <shunichi.goto@gmail.com>
Fri, 18 Sep 2009 21:25:47 +0900
changeset 9463 bd017f359c08
parent 7185 67ba74938b15
child 10413 e433002acb05
permissions -rw-r--r--
win32mbcs: util.normpath should be wrapped. It is because util.normpath() finally calls windows.pconvert() which is not wrapped (by changeset:25c41ddb3978).

# 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)