##// END OF EJS Templates
Merge with stable
Merge with stable

File last commit:

r11675:f92f8921 stable
r11681:c5e555e0 merge default
Show More
test-dispatch
33 lines | 364 B | text/plain | TextLexer
#!/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