summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: acef41c)
raw | patch | inline | side by side (parent: acef41c)
author | Junio C Hamano <gitster@pobox.com> | |
Sat, 3 Nov 2007 00:55:31 +0000 (17:55 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Thu, 8 Nov 2007 02:37:28 +0000 (18:37 -0800) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4021-format-patch-signer-mime.sh | [new file with mode: 0755] | patch | blob |
diff --git a/t/t4021-format-patch-signer-mime.sh b/t/t4021-format-patch-signer-mime.sh
--- /dev/null
@@ -0,0 +1,42 @@
+#!/bin/sh
+
+test_description='format-patch -s should force MIME encoding as needed'
+
+. ./test-lib.sh
+
+test_expect_success setup '
+
+ >F &&
+ git add F &&
+ git commit -m initial &&
+ echo new line >F &&
+
+ test_tick &&
+ git commit -m "This adds some lines to F" F
+
+'
+
+test_expect_success 'format normally' '
+
+ git format-patch --stdout -1 >output &&
+ ! grep Content-Type output
+
+'
+
+test_expect_success 'format with signoff without funny signer name' '
+
+ git format-patch -s --stdout -1 >output &&
+ ! grep Content-Type output
+
+'
+
+test_expect_success 'format with non ASCII signer name' '
+
+ GIT_COMMITTER_NAME="\e$B$O$^$N\e(B \e$B$U$K$*$&\e(B" \
+ git format-patch -s --stdout -1 >output &&
+ grep Content-Type output
+
+'
+
+test_done
+