##// END OF EJS Templates
subrepo: change default path in hgrc of subrepo after cloning...
subrepo: change default path in hgrc of subrepo after cloning Previous behavior was to put in the cloned subrepos the path found in the original main repo. However it isn't valid for relative path and it seems more logical to reference instead the subrepos working copy path of the original main repo.

File last commit:

r10144:69a97412 default
r10378:e1401c74 default
Show More
test-help
60 lines | 1.0 KiB | 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
Henri Wiechers
test-help: improve test coverage...
r10143 echo %% test list of commands with command with no help text
hg help helpext
Henri Wiechers
test-help: improve test coverage...
r10144 echo %% test a help topic
hg help revs
Thomas Arendsen Hein
Support for 'hg --version'. setup.py stores version from hg repository....
r423 exit 0