tests/test-dispatch
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Thu, 22 Jan 2009 14:32:39 +0100
changeset 7679 eb98218db768
parent 7429 dbc40381620e
child 8167 6c82beaaa11a
permissions -rwxr-xr-x
tests: fix up tests to cope with 6a0bc2dc9da6

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