tests/test-dispatch
author Mads Kiilerich <mads@kiilerich.com>
Mon, 23 Aug 2010 22:32:36 +0200
branchstable
changeset 12028 21984c1c83d4
parent 11772 423ece53380e
permissions -rwxr-xr-x
test-dispatch: drop test for missing working directory hstuart reported problems when the local Python has been configured to do stuff and crash before reaching the expected error handler.

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