blob: ee8fa938c931ab5a67cc8f8b77e812bdec2a75ff [file] [log] [blame]
package memory
import (
"testing"
. "gopkg.in/check.v1"
"gopkg.in/src-d/go-git.v4/storage/test"
)
func Test(t *testing.T) { TestingT(t) }
type StorageSuite struct {
test.BaseStorageSuite
}
var _ = Suite(&StorageSuite{})
func (s *StorageSuite) SetUpTest(c *C) {
s.BaseStorageSuite = test.NewBaseStorageSuite(NewStorage())
}