aboutsummaryrefslogtreecommitdiffstats
path: root/common_test.go
diff options
context:
space:
mode:
authorJohn Cai <johncai86@gmail.com>2021-10-02 22:51:36 -0400
committerJohn Cai <jcai@gitlab.com>2021-10-05 13:16:17 -0400
commit5340c58e393abecadb651e5f7ef43a66ce34ac88 (patch)
treec079f086ba23a21cd68ade66d784b9a1202f55ba /common_test.go
parent4ec1753b4e9324d455d3b55060020ce324e6ced2 (diff)
downloadgo-git-5340c58e393abecadb651e5f7ef43a66ce34ac88.tar.gz
git: add --follow-tags option for pushes
This PR adds support for the --follow-tags option for pushes.
Diffstat (limited to 'common_test.go')
-rw-r--r--common_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/common_test.go b/common_test.go
index 5f5bc4c..b47f5bb 100644
--- a/common_test.go
+++ b/common_test.go
@@ -198,3 +198,11 @@ func AssertReferences(c *C, r *Repository, expected map[string]string) {
c.Assert(obtained, DeepEquals, expected)
}
}
+
+func AssertReferencesMissing(c *C, r *Repository, expected []string) {
+ for _, name := range expected {
+ _, err := r.Reference(plumbing.ReferenceName(name), false)
+ c.Assert(err, NotNil)
+ c.Assert(err, Equals, plumbing.ErrReferenceNotFound)
+ }
+}