tests/test-dispatch
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Mon, 30 Aug 2010 14:06:18 +0900
changeset 12117 a40372c1c731
parent 12028 21984c1c83d4
permissions -rwxr-xr-x
tests: unify test-resolve

#!/bin/sh
# test command parsing and dispatch

"$TESTDIR/hghave" no-outer-repo || exit 80

dir=`pwd`

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 $dir
hg cat

exit 0