]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5523-push-upstream: add function to ensure fresh upstream repo
authorTay Ray Chuan <rctay89@gmail.com>
Sat, 16 Oct 2010 18:37:01 +0000 (02:37 +0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 18 Oct 2010 23:20:19 +0000 (16:20 -0700)
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5523-push-upstream.sh

index 00da70763bc34fe05dcba90a48799e32880571ce..5a18533ad7965b82a656ba779bfc8098a13339c4 100755 (executable)
@@ -3,8 +3,12 @@
 test_description='push with --set-upstream'
 . ./test-lib.sh
 
+ensure_fresh_upstream() {
+       rm -rf parent && git init --bare parent
+}
+
 test_expect_success 'setup bare parent' '
-       git init --bare parent &&
+       ensure_fresh_upstream &&
        git remote add upstream parent
 '