aboutsummaryrefslogtreecommitdiffstats
path: root/storage/memory/storage_test.go
blob: e5b8d93b39f02df8a58b7cc11dda88a6df5a26d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package memory

import (
	"testing"

	. "gopkg.in/check.v1"
	"srcd.works/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())
}