aboutsummaryrefslogtreecommitdiffstats
path: root/tag_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tag_test.go')
-rw-r--r--tag_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/tag_test.go b/tag_test.go
index df3092b..180518a 100644
--- a/tag_test.go
+++ b/tag_test.go
@@ -1,6 +1,7 @@
package git
import (
+ "fmt"
"time"
. "gopkg.in/check.v1"
@@ -112,6 +113,29 @@ func (s *TagSuite) TestObject(c *C) {
c.Assert(obj.ID().String(), Equals, "f7b877701fbf855b44c0a9e86f3fdce2c298b07f")
}
+func (s *TagSuite) TestTagItter(c *C) {
+ r := s.Repositories["https://github.com/git-fixtures/tags.git"]
+ iter, err := r.s.ObjectStorage().Iter(core.TagObject)
+ c.Assert(err, IsNil)
+
+ var count int
+ i := NewTagIter(r, iter)
+ err = i.ForEach(func(t *Tag) error {
+ count++
+ return nil
+ })
+
+ c.Assert(err, IsNil)
+ c.Assert(count, Equals, 4)
+
+ i = NewTagIter(r, iter)
+ err = i.ForEach(func(t *Tag) error {
+ return fmt.Errorf("a random error")
+ })
+
+ c.Assert(err, NotNil)
+}
+
func (s *TagSuite) TestTagEncodeDecodeIdempotent(c *C) {
ts, err := time.Parse(time.RFC3339, "2006-01-02T15:04:05-07:00")
c.Assert(err, IsNil)