view tests/test-dispatch @ 11744:5b53aa2d4b99

tests: unify test-tags
author Matt Mackall <mpm@selenic.com>
date Tue, 03 Aug 2010 00:10:28 -0500
parents f92f8921a5cc
children 423ece53380e
line wrap: on
line source

#!/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'
rm -rf $dir/a
hg --version

echo '% no repo'
cd $dir
hg cat

exit 0