tests/test-dispatch
author Bill Barry <after.fallout@gmail.com>
Thu, 22 Jan 2009 08:39:34 -0700
changeset 7691 bcdc2fe3fd07
parent 7429 dbc40381620e
child 8167 6c82beaaa11a
permissions -rwxr-xr-x
Clarified 'hg paths' command help

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