Test setting gpg.format to both invalid and valid values. Signed-off-by: Henning Schild <henning.schild@xxxxxxxxxxx> --- t/t7510-signed-commit.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/t/t7510-signed-commit.sh b/t/t7510-signed-commit.sh index 6e2015ed9..7e1e9caf4 100755 --- a/t/t7510-signed-commit.sh +++ b/t/t7510-signed-commit.sh @@ -227,4 +227,14 @@ test_expect_success GPG 'log.showsignature behaves like --show-signature' ' grep "gpg: Good signature" actual ' +test_expect_success GPG 'check config gpg.format values' ' + rm .git/config && + test_config gpg.format openpgp && + git commit -S --amend -m "success" && + test_config gpg.format OpEnPgP && + git commit -S --amend -m "success" && + test_config gpg.format malformed && + test_must_fail git commit -S --amend -m "fail" 2>result +' + test_done -- 2.16.4