test-gpg
28 lines
| 342 B
| text/plain
|
TextLexer
/ tests / test-gpg
Brendan Cully
|
r8809 | #!/bin/sh | ||
"$TESTDIR/hghave" gpg || exit 80 | ||||
cat <<EOF >> $HGRCPATH | ||||
[extensions] | ||||
gpg= | ||||
[gpg] | ||||
David Champion
|
r9041 | cmd=gpg --no-permission-warning --no-secmem-warning --homedir $TESTDIR/gpg | ||
Brendan Cully
|
r8809 | EOF | ||
hg init r | ||||
cd r | ||||
echo foo > foo | ||||
hg ci -Amfoo | ||||
echo '% no signatures' | ||||
hg sigs | ||||
echo '% hg sign 0' | ||||
hg sign 0 | ||||
echo '% hg sigs' | ||||
hg sigs | ||||
echo '% hg sigcheck 0' | ||||
hg sigcheck 0 | ||||