tests/test-dispatch
author Christian Ebert <blacktrash@gmx.net>
Sun, 19 Apr 2009 13:27:03 +0100
changeset 8083 29ac24a36ed7
parent 7429 dbc40381620e
child 8167 6c82beaaa11a
permissions -rwxr-xr-x
test-highlight: adapt output to latest pygments keeping backwards compatibility

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