##// END OF EJS Templates
debug: add debugwireargs to test argument passing over the wire...
debug: add debugwireargs to test argument passing over the wire Tests argument passing locally, via HTTP, and via SSH. This is mainly preparation for the next patch.

File last commit:

r12865:4c50552f stable
r13720:9c4e04fe default
Show More
test-ui-color.py
9 lines | 213 B | text/x-python | PythonLexer
Brodie Rao
color: call correct superclass method in write_err...
r11732 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())