Update go generate related stuff

This commit is contained in:
2016-11-20 13:28:16 +00:00
parent d8055ec28b
commit da15db2b5e
5 changed files with 45 additions and 22 deletions

View File

@@ -13,7 +13,7 @@ import (
// Mocks
//go:generate mockery -name Store -dir .. -recursive
//go:generate mockery -name Store -dir ../storage
// Suite Setup

View File

@@ -1,6 +1,7 @@
package mocks
import "github.com/stretchr/testify/mock"
import mock "github.com/stretchr/testify/mock"
import storage "github.com/jimeh/ozu.io/storage"
// Store is an autogenerated mock type for the Store type
type Store struct {
@@ -92,3 +93,5 @@ func (_m *Store) Set(_a0 []byte, _a1 []byte) error {
return r0
}
var _ storage.Store = (*Store)(nil)