git-multimail: update to release 1.2.0
[git.git] / t / t4043-diff-rename-binary.sh
blob2a2cf91352037b6f2c238237474aa1d78928f5ad
1 #!/bin/sh
3 # Copyright (c) 2010 Jakub Narebski, Christian Couder
6 test_description='Move a binary file'
8 . ./test-lib.sh
11 test_expect_success 'prepare repository' '
12 git init &&
13 echo foo > foo &&
14 echo "barQ" | q_to_nul > bar &&
15 git add . &&
16 git commit -m "Initial commit"
19 test_expect_success 'move the files into a "sub" directory' '
20 mkdir sub &&
21 git mv bar foo sub/ &&
22 git commit -m "Moved to sub/"
25 cat > expected <<\EOF
26 - - bar => sub/bar
27 0 0 foo => sub/foo
29 diff --git a/bar b/sub/bar
30 similarity index 100%
31 rename from bar
32 rename to sub/bar
33 diff --git a/foo b/sub/foo
34 similarity index 100%
35 rename from foo
36 rename to sub/foo
37 EOF
39 test_expect_success 'git show -C -C report renames' '
40 git show -C -C --raw --binary --numstat >patch-with-stat &&
41 tail -n 11 patch-with-stat >current &&
42 test_cmp expected current
45 test_done