view tests/test-dispatch @ 10796:ce2ae8bf3ae3 stable

Add missing --mq option to hg log. Since norepo is a string, not a list, the norepo check was matching command names against any substring in norepo. This fix splits norepo into a list of commands.
author Michael Glassford <glassfordmjg@gmail.com>
date Wed, 31 Mar 2010 10:59:00 -0400
parents c88c8d59979f
children f92f8921a5cc
line wrap: on
line source

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