diff options
author | Santiago M. Mola <santi@mola.io> | 2016-08-29 22:47:13 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-29 22:47:13 +0200 |
commit | e4246138cb9ffb819c052ba17a9fbdf915427291 (patch) | |
tree | bd938368afe0ffd7c9e1df16256e39e17d8184b5 /repository_test.go | |
parent | dd4af03ad368cc50dd08912010f5b667bd7569cd (diff) | |
download | go-git-e4246138cb9ffb819c052ba17a9fbdf915427291.tar.gz |
storage: Add object type hint parameter to ObjectStorage.Get. (#69)
Some storage backends can optimize object lookup if they get
the object type that is expected. So we the signature of the Get
method is now Get(Hash, ObjectType).
Added generic tests for storage backends.
Diffstat (limited to 'repository_test.go')
-rw-r--r-- | repository_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository_test.go b/repository_test.go index bfb0298..dd4539c 100644 --- a/repository_test.go +++ b/repository_test.go @@ -303,7 +303,7 @@ func (s *RepositorySuite) TestObject(c *C) { com := fmt.Sprintf("subtest %d, tag %d", i, k) info := t.objs[k] hash := core.NewHash(info.Hash) - obj, err := r.Object(hash) + obj, err := r.Object(hash, core.AnyObject) c.Assert(err, IsNil, Commentf(com)) c.Assert(obj.Type(), Equals, info.Kind, Commentf(com)) c.Assert(obj.ID(), Equals, hash, Commentf(com)) |