tests/test-username-newline
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Tue, 12 May 2009 11:05:13 +0200
changeset 8358 be2277c1dfcc
parent 7035 9d023ef7b467
permissions -rwxr-xr-x
tests: add test for branches webcommand

#!/bin/sh
#

hg init foo
cd foo
touch a


unset HGUSER
echo "[ui]" >> .hg/hgrc
echo "username= foo" >> .hg/hgrc
echo "          bar1" >> .hg/hgrc

hg ci -Am m

rm .hg/hgrc

HGUSER=`(echo foo; echo bar2)` hg ci -Am m

hg ci -Am m -u "`(echo foo; echo bar3)`"

true