tests/test-dispatch
author Cédric Duval <cedricduval@free.fr>
Sun, 24 May 2009 22:15:48 +0200
changeset 8637 c88c8d59979f
parent 8167 6c82beaaa11a
child 11675 f92f8921a5cc
permissions -rwxr-xr-x
tests: test for dispatch on [defaults]: more clearly differing output Using '-r null' instead of '-v' as the overriden command default. The latter did not have any effect on output, thus not giving much indication on whether the modified defaults were really in use or not.

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