summaryrefslogtreecommitdiff
path: root/t/t4106-apply-stdin.sh
blob: 72467a1e8ee28c4ac2a3d532bd65b9b5503cff06 (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='git apply --numstat - <patch'
 
. ./test-lib.sh
 
test_expect_success setup '
	echo hello >text &&
	git add text &&
	echo goodbye >text &&
	git diff >patch
'
 
test_expect_success 'git apply --numstat - < patch' '
	echo "1	1	text" >expect &&
	git apply --numstat - <patch >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git apply --numstat - < patch patch' '
	for i in 1 2; do echo "1	1	text"; done >expect &&
	git apply --numstat - < patch patch >actual &&
	test_cmp expect actual
'
 
test_done