edge/pkg/storage/testsuite/blob_store.go

15 lines
232 B
Go
Raw Normal View History

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