tests/test-dispatch
author Dongsheng Song <dongsheng.song@gmail.com>
Sun, 25 Jan 2009 15:11:43 +0800
changeset 7688 9e70287086c7
parent 7429 dbc40381620e
child 8167 6c82beaaa11a
permissions -rwxr-xr-x
i18n: Starting Chinese Translation of Mercurial

#!/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 -d '0 0'

echo "# missing arg"
hg cat

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

echo '% no repo'
cd ..
hg cat

exit 0