From: Junio C Hamano Date: Mon, 24 Sep 2018 17:30:45 +0000 (-0700) Subject: Merge branch 'ds/format-patch-range-diff-test' X-Git-Tag: v2.20.0-rc0~222 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/12d03908b760b959c250defe3c2e5621a8791eb4?ds=inline;hp=-c Merge branch 'ds/format-patch-range-diff-test' * ds/format-patch-range-diff-test: t3206-range-diff.sh: cover single-patch case --- 12d03908b760b959c250defe3c2e5621a8791eb4 diff --combined t/t3206-range-diff.sh index 88ebed1dfa,6babc0e276..d481f29259 --- a/t/t3206-range-diff.sh +++ b/t/t3206-range-diff.sh @@@ -133,54 -133,15 +133,54 @@@ test_expect_success 'changed message' Z + Also a silly comment here! + - Zdiff --git a/file b/file - Z--- a/file - Z+++ b/file + Z diff --git a/file b/file + Z --- a/file + Z +++ b/file 3: 147e64e = 3: b9cb956 s/11/B/ 4: a63e992 = 4: 8add5f1 s/12/B/ EOF test_cmp expected actual ' +test_expect_success 'dual-coloring' ' + sed -e "s|^:||" >expect <<-\EOF && + :1: a4b3333 = 1: f686024 s/5/A/ + :2: f51d370 ! 2: 4ab067d s/4/A/ + : @@ -2,6 +2,8 @@ + : + : s/4/A/ + : + : + Also a silly comment here! + : + + : diff --git a/file b/file + : --- a/file + : +++ b/file + :3: 0559556 ! 3: b9cb956 s/11/B/ + : @@ -10,7 +10,7 @@ + : 9 + : 10 + : -11 + : -+BB + : ++B + : 12 + : 13 + : 14 + :4: d966c5c ! 4: 8add5f1 s/12/B/ + : @@ -8,7 +8,7 @@ + : @@ + : 9 + : 10 + : - BB + : + B + : -12 + : +B + : 13 + EOF + git range-diff changed...changed-message --color --dual-color >actual.raw && + test_decode_color >actual actual && + test_i18ngrep "^Range-diff:$" actual + ' + test_done