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

import (
	"testing"

	. "gopkg.in/check.v1"
	"github.com/go-git/go-git/v5/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())
	s.BaseStorageSuite.SetUpTest(c)
}