edge/pkg/storage/testsuite/document_store.go

15 lines
266 B
Go

package testsuite
import (
"context"
"testing"
"forge.cadoles.com/arcad/edge/pkg/storage"
)
func TestDocumentStore(ctx context.Context, t *testing.T, store storage.DocumentStore) {
t.Run("Ops", func(t *testing.T) {
testDocumentStoreOps(ctx, t, store)
})
}