Code

word-diff: ignore '\ No newline at eof' marker
[git.git] / t / t4034-diff-words.sh
index c374aa4c1c60e9a12cf1ebf5587daf3656e4851a..219b45e9a49654fde2db6f2e8b4326beccee1da7 100755 (executable)
@@ -333,4 +333,18 @@ test_expect_success 'word-diff with diff.sbe' '
        word_diff --word-diff=plain
 '
 
+test_expect_success 'word-diff with no newline at EOF' '
+       cat >expect <<-\EOF &&
+       diff --git a/pre b/post
+       index 7bf316e..3dd0303 100644
+       --- a/pre
+       +++ b/post
+       @@ -1 +1 @@
+       a a [-a-]{+ab+} a a
+       EOF
+       printf "%s" "a a a a a" >pre &&
+       printf "%s" "a a ab a a" >post &&
+       word_diff --word-diff=plain
+'
+
 test_done