aboutsummaryrefslogblamecommitdiffstats
path: root/storage/memory/storage_test.go
blob: a634d5d7577401cc106b72ff63ba9a3b362c01b9 (plain) (tree)
1
2
3
4
5
6
7
8
9


              

                 
                                                  
                             

 

                                       
                          
                             
 
 
                              
 
                                        
                                                                   
 
package memory

import (
	"testing"

	"github.com/go-git/go-git/v5/storage/test"
	. "gopkg.in/check.v1"
)

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())
}