blob: 6de4acbd44589fbcf6a3f9c4ca2043c9f4e99ebe [file] [log] [blame]
#!/bin/sh
test_description='rewrite diff'
. ./test-lib.sh
test_expect_success setup '
cat ../../COPYING >test &&
git add test &&
tr 'a-zA-Z' 'n-za-mN-ZA-M' <../../COPYING >test
'
test_expect_success 'detect rewrite' '
actual=$(git diff-files -B --summary test) &&
expr "$actual" : " rewrite test ([0-9]*%)$" || {
echo "Eh? <<$actual>>"
false
}
'
test_done