3 test_description
='git apply --numstat - <patch'
7 test_expect_success setup
'
14 test_expect_success
'git apply --numstat - < patch' '
15 echo "1 1 text" >expect &&
16 git apply --numstat - <patch >actual &&
17 test_cmp expect actual
20 test_expect_success
'git apply --numstat - < patch patch' '
21 for i in 1 2; do echo "1 1 text"; done >expect &&
22 git apply --numstat - < patch patch >actual &&
23 test_cmp expect actual