##// END OF EJS Templates
keyword: make kwfiles --all show unknown files too...
keyword: make kwfiles --all show unknown files too More consistent and similar to hg status.

File last commit:

r8637:c88c8d59 default
r9492:3b1864bc 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