tests/test-dispatch
author Martin Geisler <mg@aragost.com>
Fri, 13 Aug 2010 10:13:38 +0200
branchstable
changeset 11834 a86fd45c1911
parent 11772 423ece53380e
child 12028 21984c1c83d4
permissions -rwxr-xr-x
hgrc.5: fix "hg hg status" -> "hg status"

#!/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 '% working directory removed'
sh -c "cd $dir && rm -rf a"
hg --version 2>&1 | sed -e 's,\(abort:.*:\).*$,\1 ...,g'

echo '% no repo'
cd $dir
hg cat

exit 0