view tests/test-dispatch @ 10967:479f15f3faa9

keyword: monkeypatch patch so that optional args can be passed as kwargs
author Augie Fackler <durin42@gmail.com>
date Sat, 17 Apr 2010 13:38:42 -0500
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