summaryrefslogtreecommitdiff
path: root/t/t5520-pull.sh
blob: f841574573545fa333e00b6815ba0df7d6931273 (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
27
28
29
30
31
32
33
#!/bin/sh
 
test_description='pulling into void'
 
. ./test-lib.sh
 
D=`pwd`
 
test_expect_success setup '
 
	echo file >file &&
	git add file &&
	git commit -a -m original
 
'
 
test_expect_success 'pulling into void' '
	mkdir cloned &&
	cd cloned &&
	git init-db &&
	git pull ..
'
 
cd "$D"
 
test_expect_success 'checking the results' '
	test -f file &&
	test -f cloned/file &&
	diff file cloned/file
'
 
test_done