view tests/test-dispatch @ 11079:39f725929f0c stable 1.5.2

i18n-pt_BR: synchronized with ee5b112aa529
author Wagner Bruna <wbruna@yahoo.com>
date Sat, 01 May 2010 17:55:44 -0300
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