]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t7502-commit-porcelain.sh
Merge branch 'la/trailer-cleanups' into maint-2.43
[thirdparty/git.git] / t / t7502-commit-porcelain.sh
index 61c8e810ccede4618594570ea3b747f5c51e6d1c..a87c211d0b16d0ffc4f8c7c2d6366209af1198f5 100755 (executable)
@@ -485,6 +485,24 @@ test_expect_success 'commit --trailer not confused by --- separator' '
        test_cmp expected actual
 '
 
+test_expect_success 'commit --trailer with --verbose' '
+       cat >msg <<-\EOF &&
+       subject
+
+       body
+       EOF
+       GIT_EDITOR=: git commit --edit -F msg --allow-empty \
+               --trailer="my-trailer: value" --verbose &&
+       {
+               cat msg &&
+               echo &&
+               echo "my-trailer: value"
+       } >expected &&
+       git cat-file commit HEAD >commit.msg &&
+       sed -e "1,/^\$/d" commit.msg >actual &&
+       test_cmp expected actual
+'
+
 test_expect_success 'multiple -m' '
 
        >negative &&