tests/test-ui-color.py
author Matt Mackall <mpm@selenic.com>
Fri, 22 Apr 2011 11:22:02 -0500
changeset 13990 ddf488bfbdbd
parent 12865 4c50552fc9bc
child 14516 842a9179132c
permissions -rw-r--r--
run-tests: add ignores list

from hgext import color

# ensure errors aren't buffered
testui = color.colorui()
testui.pushbuffer()
testui.write('buffered\n')
testui.warn('warning\n')
testui.write_err('error\n')
print repr(testui.popbuffer())