view tests/test-dispatch @ 9081:d8e8447a4b7b

keyword: collect kwmaps using a generator expression Allowed for Python 2.4.
author Christian Ebert <blacktrash@gmx.net>
date Tue, 07 Jul 2009 23:30:53 +0200
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