[PATCH] Verbose git-daemon logging
[git/dscho.git] / t / t4102-apply-rename.sh
blob530cc4d2a38c6f4af92097dfe524029ef6a3a6bf
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 test_description='git-apply handling copy/rename patch.
9 . ./test-lib.sh
11 # setup
13 cat >test-patch <<\EOF
14 diff --git a/foo b/bar
15 similarity index 47%
16 copy from foo
17 copy to bar
18 --- a/foo
19 +++ b/bar
20 @@ -1 +1 @@
21 -This is foo
22 +This is bar
23 EOF
25 echo 'This is foo' >foo
26 chmod +x foo
28 test_expect_success setup \
29 'git-update-index --add foo'
31 test_expect_success apply \
32 'git-apply --index --stat --summary --apply test-patch'
34 test_expect_success validate \
35 'test -f bar && ls -l bar | grep "^-..x..x..x"'
37 test_done