blob: 4c484dadfb0ada163cbe3720117e846ef5c82c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
test_description='minimal diff algorithm'
. ./test-lib.sh
test_expect_success 'minimal diff should not mark changes between changed lines' '
test_write_lines x x x x >pre &&
test_write_lines x x x A B C D x E F G >post &&
test_expect_code 1 git diff --no-index --minimal pre post >diff &&
test_grep ! ^[+-]x diff
'
test_done
|