3 test_description
='git apply --numstat - <patch'
6 TEST_PASSES_SANITIZE_LEAK
=true
9 test_expect_success setup
'
16 test_expect_success
'git apply --numstat - < patch' '
17 echo "1 1 text" >expect &&
18 git apply --numstat - <patch >actual &&
19 test_cmp expect actual
22 test_expect_success
'git apply --numstat - < patch patch' '
23 cat >expect <<-\EOF &&
27 git apply --numstat - < patch patch >actual &&
28 test_cmp expect actual