aboutsummaryrefslogtreecommitdiff
path: root/t/t4014-format-patch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-09-14 21:43:57 -0700
committerJunio C Hamano <gitster@pobox.com>2011-09-14 21:43:57 -0700
commit559357b508847df5a5736ed7130f6bccab52d044 (patch)
tree49b5175355e95ccc029e759e2f59171fd9ab475e /t/t4014-format-patch.sh
parent1e5814f3def08452aef4caa703f074ba7d167867 (diff)
parent787570c7cddea7ffe3cb2e52c8af169bb17ba29b (diff)
downloadgit-559357b508847df5a5736ed7130f6bccab52d044.tar.gz
git-559357b508847df5a5736ed7130f6bccab52d044.tar.xz
Merge branch 'ph/format-patch-no-color'
* ph/format-patch-no-color: format-patch: ignore ui.color
Diffstat (limited to 't/t4014-format-patch.sh')
-rwxr-xr-xt/t4014-format-patch.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
index 5cbc066e6..7e405d7af 100755
--- a/t/t4014-format-patch.sh
+++ b/t/t4014-format-patch.sh
@@ -886,4 +886,12 @@ test_expect_success 'empty subject prefix does not have extra space' '
test_cmp expect actual
'
+test_expect_success 'format patch ignores color.ui' '
+ test_unconfig color.ui &&
+ git format-patch --stdout -1 >expect &&
+ test_config color.ui always &&
+ git format-patch --stdout -1 >actual &&
+ test_cmp expect actual
+'
+
test_done