##// END OF EJS Templates
test-help: improve test coverage...
test-help: improve test coverage Adds a test for help on a command with no options. Extends test coverage of commands.help_ by 2 lines.

File last commit:

r10140:5d868e05 default
r10140:5d868e05 default
Show More
test-help
30 lines | 477 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
Thomas Arendsen Hein
Support for 'hg --version'. setup.py stores version from hg repository....
r423 exit 0