summaryrefslogtreecommitdiff
path: root/t/t4022-diff-rewrite.sh
blob: 6de4acbd44589fbcf6a3f9c4ca2043c9f4e99ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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