2006-11-16 20:47:22 +01:00
|
|
|
#!/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 &&
|
2007-01-12 22:01:46 +01:00
|
|
|
git init &&
|
2006-11-16 20:47:22 +01:00
|
|
|
git pull ..
|
|
|
|
'
|
|
|
|
|
|
|
|
cd "$D"
|
|
|
|
|
|
|
|
test_expect_success 'checking the results' '
|
|
|
|
test -f file &&
|
|
|
|
test -f cloned/file &&
|
|
|
|
diff file cloned/file
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|
|
|
|
|