Mercurial > hg
annotate tests/test-gpg @ 9336:dd6f605b15c0
mq: upgrade the patch to HG format when adding the author name with qrefresh
When setting the author field with qrefresh (-u|-U), and the patch does have
neither a 'From:' nor a '# User' header, add the author name as such:
- if the patch has a 'Date:' header, add a 'From:' header
- otherwise, upgrade to Mercurial extended patch format and add # From
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> |
---|---|
date | Wed, 12 Aug 2009 10:48:18 +0200 |
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 |