edge/pkg/storage/testsuite/document_store.go

15 lines
247 B
Go

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