tests/heredoctest.py
author Idan Kamara <idankk86@gmail.com>
Wed, 12 Oct 2011 22:01:13 +0200
branchstable
changeset 1107 943253aadddb
child 1108 168da136346a
permissions -rw-r--r--
tests: add helper script for processing doctests read from stdin Writes stdin to a temp file and doctests it. In the future we might want to spare the temp file and directly call into doctest. Also, with some tweaking it seems possible to adjust the line numbers reported in an error report so they match the ones in the original file. [ original upstream message ]

import doctest, tempfile, os, sys

if __name__ == "__main__":
    fd, name = tempfile.mkstemp(suffix='hg-tst')
    os.write(fd, sys.stdin.read())
    os.close(fd)
    failures, _ = doctest.testfile(name, module_relative=False)
    if failures:
        sys.exit(1)