From f3f5c7f5201ef71e62cea41a8b692cace2dcf579 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 4 Oct 2016 15:21:38 -0700 Subject: t4015: split out the "setup" part of ws-error-highlight test We'd want to run this same set of test twice, once with the option and another time with an equivalent configuration setting. Split out the step that prepares the test data and expected output and move the test for the command line option into a separate test. Signed-off-by: Junio C Hamano --- t/t4015-diff-whitespace.sh | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) (limited to 't') diff --git a/t/t4015-diff-whitespace.sh b/t/t4015-diff-whitespace.sh index 2434157aa7..4a4f374824 100755 --- a/t/t4015-diff-whitespace.sh +++ b/t/t4015-diff-whitespace.sh @@ -869,7 +869,8 @@ test_expect_success 'diff that introduces and removes ws breakages' ' test_cmp expected current ' -test_expect_success 'the same with --ws-error-highlight' ' +test_expect_success 'ws-error-highlight test setup' ' + git reset --hard && { echo "0. blank-at-eol " && @@ -882,10 +883,7 @@ test_expect_success 'the same with --ws-error-highlight' ' echo "2. and a new line " } >x && - git -c color.diff=always diff --ws-error-highlight=default,old | - test_decode_color >current && - - cat >expected <<-\EOF && + cat >expect.default-old <<-\EOF && diff --git a/x b/x index d0233a2..700886e 100644 --- a/x @@ -897,12 +895,7 @@ test_expect_success 'the same with --ws-error-highlight' ' +2. and a new line EOF - test_cmp expected current && - - git -c color.diff=always diff --ws-error-highlight=all | - test_decode_color >current && - - cat >expected <<-\EOF && + cat >expect.all <<-\EOF && diff --git a/x b/x index d0233a2..700886e 100644 --- a/x @@ -914,12 +907,7 @@ test_expect_success 'the same with --ws-error-highlight' ' +2. and a new line EOF - test_cmp expected current && - - git -c color.diff=always diff --ws-error-highlight=none | - test_decode_color >current && - - cat >expected <<-\EOF && + cat >expect.none <<-\EOF diff --git a/x b/x index d0233a2..700886e 100644 --- a/x @@ -931,7 +919,22 @@ test_expect_success 'the same with --ws-error-highlight' ' +2. and a new line EOF - test_cmp expected current +' + +test_expect_success 'test --ws-error-highlight option' ' + + git -c color.diff=always diff --ws-error-highlight=default,old | + test_decode_color >current && + test_cmp expect.default-old current && + + git -c color.diff=always diff --ws-error-highlight=all | + test_decode_color >current && + test_cmp expect.all current && + + git -c color.diff=always diff --ws-error-highlight=none | + test_decode_color >current && + test_cmp expect.none current + ' test_done -- cgit v1.2.3