##// END OF EJS Templates
test-help: improve test coverage...
test-help: improve test coverage Adds a test that extension commands are omitted from the default command list. Extends test coverage of commands.help_ by 1 line.

File last commit:

r10142:44fa0e20 default
r10142:44fa0e20 default
Show More
test-help
54 lines | 906 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
Thomas Arendsen Hein
Further help improvements:...
r849 hg
hg -q
mpm@selenic.com
A bunch of parsing/help updates...
r596 hg help
Thomas Arendsen Hein
Support for 'hg --version'. setup.py stores version from hg repository....
r423 hg -q help
Henri Wiechers
test-help: improve test coverage...
r10110
echo %% test short command list with verbose option
hg -v help shortlist | sed 's/[(]version [^)]*[)]/(version xxx)/'
mpm@selenic.com
Add a simple testing framework...
r331 hg add -h
Henri Wiechers
test-help: improve test coverage...
r10121
echo %% test help option with version option
hg add -h --version | sed 's/[(]version [^)]*[)]/(version xxx)/'
mpm@selenic.com
A bunch of parsing/help updates...
r596 hg add --skjdfks
Henri Wiechers
test-help: improve test coverage...
r10139
echo %% test ambiguous command help
hg help ad
Henri Wiechers
test-help: improve test coverage...
r10140 echo %% test command without options
hg help verify
mpm@selenic.com
Add a simple testing framework...
r331 hg help diff
Thomas Arendsen Hein
Further help improvements:...
r849 hg help status
hg -q help status
mpm@selenic.com
Add a simple testing framework...
r331 hg help foo
Thomas Arendsen Hein
Further help improvements:...
r849 hg skjdfks
mpm@selenic.com
Add a simple testing framework...
r331
Henri Wiechers
test-help: improve test coverage...
r10141 cat > helpext.py <<EOF
import os
from mercurial import commands
def nohelp(ui, *args, **kwargs):
pass
cmdtable = {
"nohelp": (nohelp, [], "hg nohelp"),
}
commands.norepo += ' nohelp'
EOF
abspath=`pwd`/helpext.py
echo '[extensions]' >> $HGRCPATH
echo "helpext = $abspath" >> $HGRCPATH
echo %% test command with no help text
hg help nohelp
Henri Wiechers
test-help: improve test coverage...
r10142 echo %% test that default list of commands omits extension commands
hg help
Thomas Arendsen Hein
Support for 'hg --version'. setup.py stores version from hg repository....
r423 exit 0