view tests/test-ui-color.py @ 12189:fb0c6373ec36

tests: unify test-empty-group
author Adrian Buehlmann <adrian@cadifra.com>
date Fri, 03 Sep 2010 09:12:36 +0200
parents 386e56ecfb78
children 4c50552fc9bc
line wrap: on
line source

#!/usr/bin/env python

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