tests/test-username-newline
author Matt Mackall <mpm@selenic.com>
Thu, 29 Apr 2010 18:25:45 -0500
changeset 11039 cf0a309f6c4d
parent 7035 9d023ef7b467
permissions -rwxr-xr-x
run-tests: sort options

#!/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