test-dispatch.t
62 lines
| 1.2 KiB
| text/troff
|
Tads3Lexer
/ tests / test-dispatch.t
Adrian Buehlmann
|
r12157 | test command parsing and dispatch | ||
$ hg init a | ||||
$ cd a | ||||
Nicolas Dumazet
|
r14115 | |||
Redundant options used to crash (issue436): | ||||
$ hg -v log -v | ||||
$ hg -v log -v x | ||||
Adrian Buehlmann
|
r12157 | $ echo a > a | ||
$ hg ci -Ama | ||||
adding a | ||||
Missing arg: | ||||
$ hg cat | ||||
hg cat: invalid arguments | ||||
hg cat [OPTION]... FILE... | ||||
output the current or given revision of files | ||||
Matt Mackall
|
r22117 | options ([+] can be repeated): | ||
Adrian Buehlmann
|
r12157 | |||
Matt Mackall
|
r15145 | -o --output FORMAT print output to file with formatted name | ||
-r --rev REV print the given revision | ||||
Pierre-Yves David
|
r30152 | --decode apply any matching decode filter | ||
Matt Mackall
|
r15145 | -I --include PATTERN [+] include names matching the given patterns | ||
-X --exclude PATTERN [+] exclude names matching the given patterns | ||||
Adrian Buehlmann
|
r12157 | |||
timeless
|
r29974 | (use 'hg cat -h' to show more help) | ||
Matt Mackall
|
r12316 | [255] | ||
Adrian Buehlmann
|
r12157 | |||
[defaults] | ||||
$ hg cat a | ||||
a | ||||
$ cat >> $HGRCPATH <<EOF | ||||
> [defaults] | ||||
> cat = -r null | ||||
> EOF | ||||
$ hg cat a | ||||
a: no such file in rev 000000000000 | ||||
Matt Mackall
|
r12316 | [1] | ||
Adrian Buehlmann
|
r12157 | |||
Mads Kiilerich
|
r17014 | $ cd "$TESTTMP" | ||
Mads Kiilerich
|
r18506 | OSError "No such file or directory" / "The system cannot find the path | ||
specified" should include filename even when it is empty | ||||
Mads Kiilerich
|
r18227 | |||
$ hg -R a archive '' | ||||
Mads Kiilerich
|
r18506 | abort: *: '' (glob) | ||
Mads Kiilerich
|
r18227 | [255] | ||
Mads Kiilerich
|
r17014 | #if no-outer-repo | ||
Adrian Buehlmann
|
r12157 | No repo: | ||
$ hg cat | ||||
Matt Mackall
|
r13967 | abort: no repository found in '$TESTTMP' (.hg not found)! | ||
Matt Mackall
|
r12316 | [255] | ||
Adrian Buehlmann
|
r12157 | |||
Mads Kiilerich
|
r17014 | #endif | ||