##// 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
#!/bin/sh
hg
hg -q
hg help
hg -q help
echo %% test short command list with verbose option
hg -v help shortlist | sed 's/[(]version [^)]*[)]/(version xxx)/'
hg add -h
echo %% test help option with version option
hg add -h --version | sed 's/[(]version [^)]*[)]/(version xxx)/'
hg add --skjdfks
echo %% test ambiguous command help
hg help ad
echo %% test command without options
hg help verify
hg help diff
hg help status
hg -q help status
hg help foo
hg skjdfks
exit 0