2014-10-21 22:02:20 +00:00
|
|
|
package inmemory
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-02-11 02:14:23 +00:00
|
|
|
storagedriver "github.com/docker/distribution/registry/storage/driver"
|
|
|
|
"github.com/docker/distribution/registry/storage/driver/testsuites"
|
2014-11-17 23:44:07 +00:00
|
|
|
"gopkg.in/check.v1"
|
2014-10-21 22:02:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Hook up gocheck into the "go test" runner.
|
2014-11-17 23:44:07 +00:00
|
|
|
func Test(t *testing.T) { check.TestingT(t) }
|
2014-10-21 22:02:20 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
inmemoryDriverConstructor := func() (storagedriver.StorageDriver, error) {
|
2014-10-29 01:15:40 +00:00
|
|
|
return New(), nil
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|
2015-06-29 23:39:45 +00:00
|
|
|
testsuites.RegisterSuite(inmemoryDriverConstructor, testsuites.NeverSkip)
|
2014-10-21 22:02:20 +00:00
|
|
|
}
|