diff options
author | Santiago M. Mola <santi@mola.io> | 2016-12-14 23:12:44 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-14 23:12:44 +0100 |
commit | 0af572dd21c0aa79d13745b633ee24ba6c4d6cf1 (patch) | |
tree | 49e81e74e82d84fd88b2fc1e4b0dc7c7bfe9c40f /references_test.go | |
parent | df0f38af83f972f026d7e14150f3d37b95f13484 (diff) | |
download | go-git-0af572dd21c0aa79d13745b633ee24ba6c4d6cf1.tar.gz |
move plumbing from top level package to plumbing (#183)
* plumbing: rename Object -> EncodedObject.
* plumbing/storer: rename ObjectStorer -> EncodedObjectStorer.
* move difftree to plumbing/difftree.
* move diff -> utils/diff
* make Object/Tag/Blob/Tree/Commit/File depend on storer.
* Object and its implementations now depend only on
storer.EncodedObjectStorer, not git.Repository.
* Tests are decoupled accordingly.
* move Object/Commit/File/Tag/Tree to plumbing/object.
* move Object/Commit/File/Tag/Tree to plumbing/object.
* move checkClose to utils/ioutil.
* move RevListObjects to plumbing/revlist.Objects.
* move DiffTree to plumbing/difftree package.
* rename files with plural nouns to singular
* plumbing/object: add GetBlob/GetCommit/GetTag/GetTree.
Diffstat (limited to 'references_test.go')
-rw-r--r-- | references_test.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/references_test.go b/references_test.go index 2147f49..1223df6 100644 --- a/references_test.go +++ b/references_test.go @@ -6,6 +6,7 @@ import ( "gopkg.in/src-d/go-git.v4/fixtures" "gopkg.in/src-d/go-git.v4/plumbing" + "gopkg.in/src-d/go-git.v4/plumbing/object" . "gopkg.in/check.v1" ) @@ -293,7 +294,7 @@ func (s *ReferencesSuite) TestRevList(c *C) { commit, err := r.Commit(plumbing.NewHash(t.commit)) c.Assert(err, IsNil) - revs, err := commit.References(t.path) + revs, err := References(commit, t.path) c.Assert(err, IsNil) c.Assert(len(revs), Equals, len(t.revs)) @@ -315,7 +316,7 @@ func (s *ReferencesSuite) TestRevList(c *C) { } // same length is assumed -func compareSideBySide(a []string, b []*Commit) string { +func compareSideBySide(a []string, b []*object.Commit) string { var buf bytes.Buffer buf.WriteString("\t EXPECTED OBTAINED ") var sep string @@ -352,10 +353,10 @@ func (s *ReferencesSuite) TestEquivalent(c *C) { } // returns the commits from a slice of hashes -func (s *ReferencesSuite) commits(c *C, repo string, hs ...string) []*Commit { +func (s *ReferencesSuite) commits(c *C, repo string, hs ...string) []*object.Commit { r := s.NewRepositoryFromPackfile(fixtures.ByURL(repo).One()) - result := make([]*Commit, 0, len(hs)) + result := make([]*object.Commit, 0, len(hs)) for _, h := range hs { commit, err := r.Commit(plumbing.NewHash(h)) c.Assert(err, IsNil) |