##// END OF EJS Templates
convert/subversion: fix default URL checker prototype
convert/subversion: fix default URL checker prototype

File last commit:

r10413:e433002a default
r10885:9e4d120e stable
Show More
test-doctest.py
19 lines | 434 B | text/x-python | PythonLexer
# 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)