diff options
author | Taru Karttunen <taruti@taruti.net> | 2017-11-15 18:33:41 +0200 |
---|---|---|
committer | Jeremy Stribling <strib@alum.mit.edu> | 2017-11-29 11:01:18 -0800 |
commit | fae438980c3e17cb04f84ce92b99cd3c835e3e18 (patch) | |
tree | 49897b1fef2644f332015a7d7f3333c3e6c935e8 /plumbing/storer/object_test.go | |
parent | 3f0b1ff37b64108cfed1b57ea4ae1f1566592905 (diff) | |
download | go-git-fae438980c3e17cb04f84ce92b99cd3c835e3e18.tar.gz |
Support for repacking objects
Diffstat (limited to 'plumbing/storer/object_test.go')
-rw-r--r-- | plumbing/storer/object_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plumbing/storer/object_test.go b/plumbing/storer/object_test.go index f8b1f73..68e8e10 100644 --- a/plumbing/storer/object_test.go +++ b/plumbing/storer/object_test.go @@ -161,3 +161,7 @@ func (o *MockObjectStorage) LooseObjectTime(plumbing.Hash) (time.Time, error) { func (o *MockObjectStorage) DeleteLooseObject(plumbing.Hash) error { return plumbing.ErrObjectNotFound } + +func (o *MockObjectStorage) ObjectPacks() ([]plumbing.Hash, error) { + return nil, nil +} |