Mercurial > hg
annotate tests/test-gpg @ 9876:6e8a16dd3e30
alias: improve help text for command aliases
Displays the line "alias for: hg ..." with the original command including options,
followed by the command's original help text.
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Wed, 11 Nov 2009 17:48:00 +0100 |
parents | 6e5e548452de |
children |
rev | line source |
---|---|
8809 | 1 #!/bin/sh |
2 | |
3 "$TESTDIR/hghave" gpg || exit 80 | |
4 | |
5 cat <<EOF >> $HGRCPATH | |
6 [extensions] | |
7 gpg= | |
8 | |
9 [gpg] | |
9041
6e5e548452de
test-gpg: suppress secure memory warning
David Champion <dgc@uchicago.edu>
parents:
8809
diff
changeset
|
10 cmd=gpg --no-permission-warning --no-secmem-warning --homedir $TESTDIR/gpg |
8809 | 11 EOF |
12 | |
13 hg init r | |
14 cd r | |
15 echo foo > foo | |
16 hg ci -Amfoo | |
17 | |
18 echo '% no signatures' | |
19 hg sigs | |
20 | |
21 echo '% hg sign 0' | |
22 hg sign 0 | |
23 | |
24 echo '% hg sigs' | |
25 hg sigs | |
26 | |
27 echo '% hg sigcheck 0' | |
28 hg sigcheck 0 |