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

        

                 
                                               

                                   
 




                                       


                             
 
                              

                                        
                                                     
                            
 
                                                              
 
package filesystem

import (
	"testing"

	"gopkg.in/src-d/go-git.v4/storage/test"

	"srcd.works/go-billy.v1/os"

	. "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) {
	storage, err := NewStorage(os.New(c.MkDir()))
	c.Assert(err, IsNil)

	s.BaseStorageSuite = test.NewBaseStorageSuite(storage)
}