tests/test-dispatch
author Wagner Bruna <wbruna@softwareexpress.com.br>
Fri, 26 Feb 2010 19:28:23 -0300
branchstable
changeset 10553 4462760d6cfc
parent 8637 c88c8d59979f
child 11675 f92f8921a5cc
permissions -rwxr-xr-x
i18n-pt_BR: synchronized with dd3526162436

#!/bin/sh
# test command parsing and dispatch

"$TESTDIR/hghave" no-outer-repo || exit 80

hg init a
cd a
echo a > a
hg ci -Ama

echo "# missing arg"
hg cat

echo '% [defaults]'
hg cat a
cat >> $HGRCPATH <<EOF
[defaults]
cat = -r null
EOF
hg cat a

echo '% no repo'
cd ..
hg cat

exit 0