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


              

                 
                             
                                               

 

                                       
                          
                             
 
 
                              
 
                                        
                                                                   
                                       
 
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())
	s.BaseStorageSuite.SetUpTest(c)
}