##// END OF EJS Templates
convert: warn on superfluous / in paths...
convert: warn on superfluous / in paths shlex is really a bad parser for this line-based format ...

File last commit:

r11675:f92f8921 stable
r11680:7fefef3c default
Show More
test-dispatch
27 lines | 288 B | text/plain | TextLexer
#!/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