summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-06-24 22:29:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-06-24 22:29:33 (GMT)
commit6f0c89d08ca8c72b778a489e49cfc670d24e1905 (patch)
tree65f1140eb37e6e1fea9a6bd646f65eb2c016825d /t
parent4f7132a9bed66d62a27f3ee9e01022d05e3ea2e5 (diff)
parentae52d57f0b45b2db93f13c009b7a31108d5d6525 (diff)
downloadgit-6f0c89d08ca8c72b778a489e49cfc670d24e1905.zip
git-6f0c89d08ca8c72b778a489e49cfc670d24e1905.tar.gz
git-6f0c89d08ca8c72b778a489e49cfc670d24e1905.tar.bz2
Merge branch 'km/test-mailinfo-b-failure' into maint
New tests. * km/test-mailinfo-b-failure: t5100: add some more mailinfo tests
Diffstat (limited to 't')
-rwxr-xr-xt/t5100-mailinfo.sh42
1 files changed, 42 insertions, 0 deletions
diff --git a/t/t5100-mailinfo.sh b/t/t5100-mailinfo.sh
index 7171f67..9690dca 100755
--- a/t/t5100-mailinfo.sh
+++ b/t/t5100-mailinfo.sh
@@ -171,4 +171,46 @@ test_expect_success 'mailinfo with mailinfo.scissors config' '
'
+test_expect_success 'mailinfo no options' '
+ subj="$(echo "Subject: [PATCH] [other] [PATCH] message" |
+ git mailinfo /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: message"
+'
+
+test_expect_success 'mailinfo -k' '
+ subj="$(echo "Subject: [PATCH] [other] [PATCH] message" |
+ git mailinfo -k /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: [PATCH] [other] [PATCH] message"
+'
+
+test_expect_success 'mailinfo -b no [PATCH]' '
+ subj="$(echo "Subject: [other] message" |
+ git mailinfo -b /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: [other] message"
+'
+
+test_expect_success 'mailinfo -b leading [PATCH]' '
+ subj="$(echo "Subject: [PATCH] [other] message" |
+ git mailinfo -b /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: [other] message"
+'
+
+test_expect_success 'mailinfo -b double [PATCH]' '
+ subj="$(echo "Subject: [PATCH] [PATCH] message" |
+ git mailinfo -b /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: message"
+'
+
+test_expect_failure 'mailinfo -b trailing [PATCH]' '
+ subj="$(echo "Subject: [other] [PATCH] message" |
+ git mailinfo -b /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: [other] message"
+'
+
+test_expect_failure 'mailinfo -b separated double [PATCH]' '
+ subj="$(echo "Subject: [PATCH] [other] [PATCH] message" |
+ git mailinfo -b /dev/null /dev/null)" &&
+ test z"$subj" = z"Subject: [other] message"
+'
+
test_done