2023-02-09 12:16:36 +01:00
|
|
|
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) {
|
2023-04-06 14:45:50 +02:00
|
|
|
t.Parallel()
|
2023-02-09 12:16:36 +01:00
|
|
|
testBlobStoreOps(t, store)
|
|
|
|
})
|
|
|
|
}
|