mirror of https://github.com/minio/minio.git
25 lines
363 B
Go
25 lines
363 B
Go
package inmemory
|
|
|
|
import (
|
|
"testing"
|
|
|
|
mstorage "github.com/minio-io/minio/pkg/storage"
|
|
|
|
. "gopkg.in/check.v1"
|
|
)
|
|
|
|
func Test(t *testing.T) { TestingT(t) }
|
|
|
|
type MySuite struct{}
|
|
|
|
var _ = Suite(&MySuite{})
|
|
|
|
func (s *MySuite) TestAPISuite(c *C) {
|
|
create := func() mstorage.Storage {
|
|
_, _, store := Start()
|
|
return store
|
|
}
|
|
|
|
mstorage.APITestSuite(c, create)
|
|
}
|