blob: 6687459e871ce92a609ea3bd50d69282338fb53f [file] [log] [blame]
package memfs
import (
"testing"
"gopkg.in/src-d/go-billy.v3/test"
. "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
type MemorySuite struct {
test.FilesystemSuite
path string
}
var _ = Suite(&MemorySuite{})
func (s *MemorySuite) SetUpTest(c *C) {
s.FilesystemSuite = test.NewFilesystemSuite(New())
}