20 lines
		
	
	
		
			505 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			505 B
		
	
	
	
		
			Go
		
	
	
| package inmemory
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	storagedriver "github.com/distribution/distribution/v3/registry/storage/driver"
 | |
| 	"github.com/distribution/distribution/v3/registry/storage/driver/testsuites"
 | |
| 	"gopkg.in/check.v1"
 | |
| )
 | |
| 
 | |
| // Hook up gocheck into the "go test" runner.
 | |
| func Test(t *testing.T) { check.TestingT(t) }
 | |
| 
 | |
| func init() {
 | |
| 	inmemoryDriverConstructor := func() (storagedriver.StorageDriver, error) {
 | |
| 		return New(), nil
 | |
| 	}
 | |
| 	testsuites.RegisterSuite(inmemoryDriverConstructor, testsuites.NeverSkip)
 | |
| }
 |