tests/test-doctest.py
author Patrick Mezard <pmezard@gmail.com>
Mon, 13 Oct 2008 17:31:03 +0100
changeset 7097 d4218edd55bd
parent 7078 967adcf5910d
child 7185 67ba74938b15
permissions -rw-r--r--
convert: fix builtin cvsps under Windows Drafted and reviewed by Frank Kingswood <frank@kingswood-consulting.co.uk>.

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