Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
gitweb: Convert generated contents to utf8 in commitdiff_plain
[gitweb.git]
/
t
/
t5404-tracking-branches.sh
diff --git
a/t/t5404-tracking-branches.sh
b/t/t5404-tracking-branches.sh
index 799e47e5ba9d3cb068528813113fbfb736107ce4..1493a92c06d041e502bcc08a1cee95e6758f1775 100755
(executable)
--- a/
t/t5404-tracking-branches.sh
+++ b/
t/t5404-tracking-branches.sh
@@
-45,4
+45,9
@@
test_expect_success 'check tracking branches not updated for failed refs' '
test "$(git rev-parse origin/b2)" = "$b2"
'
+test_expect_success 'deleted branches have their tracking branches removed' '
+ git push origin :b1 &&
+ test "$(git rev-parse origin/b1)" = "origin/b1"
+'
+
test_done