15 lines
235 B
Go
15 lines
235 B
Go
|
package testsuite
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"forge.cadoles.com/arcad/edge/pkg/storage"
|
||
|
)
|
||
|
|
||
|
func TestBlobStore(t *testing.T, store storage.BlobStore) {
|
||
|
t.Run("Ops", func(t *testing.T) {
|
||
|
// t.Parallel()
|
||
|
testBlobStoreOps(t, store)
|
||
|
})
|
||
|
}
|