summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6a5ea2d)
raw | patch | inline | side by side (parent: 6a5ea2d)
author | Jeff King <peff@peff.net> | |
Wed, 28 Mar 2007 21:08:36 +0000 (17:08 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Wed, 28 Mar 2007 21:28:00 +0000 (14:28 -0700) |
Especially this tests i18n messages and encoding header.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/t6006-rev-list-format.sh | patch | blob | history |
index ce9c7dc6ebfc4092055e29d358e0b2d5d2e16c9b..aab17face8c0b326359c250bb83684ed3b894160 100755 (executable)
\e[31mfoo\e[32mbar\e[34mbaz\e[mxyzzy
EOF
+cat >commit-msg <<'EOF'
+Test printing of complex bodies
+
+This commit message is much longer than the others,
+and it will be encoded in iso8859-1. We should therefore
+include an iso8859 character: ¡bueno!
+EOF
+test_expect_success 'setup complex body' '
+git-config i18n.commitencoding iso8859-1 &&
+ echo change2 >foo && git-commit -a -F commit-msg
+'
+
+test_format complex-encoding %e <<'EOF'
+commit f58db70b055c5718631e5c61528b28b12090cdea
+iso8859-1
+commit 131a310eb913d107dd3c09a65d1651175898735d
+<unknown>
+commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
+<unknown>
+EOF
+
+test_format complex-subject %s <<'EOF'
+commit f58db70b055c5718631e5c61528b28b12090cdea
+Test printing of complex bodies
+commit 131a310eb913d107dd3c09a65d1651175898735d
+changed foo
+commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
+added foo
+EOF
+
+test_format complex-body %b <<'EOF'
+commit f58db70b055c5718631e5c61528b28b12090cdea
+This commit message is much longer than the others,
+and it will be encoded in iso8859-1. We should therefore
+include an iso8859 character: ¡bueno!
+
+commit 131a310eb913d107dd3c09a65d1651175898735d
+<unknown>
+commit 86c75cfd708a0e5868dc876ed5b8bb66c80b4873
+<unknown>
+EOF
+
test_done