1//go:build !cgo || no_sqlite32// +build !cgo no_sqlite334package blob56import (7 "testing"89 "github.com/foxcpp/maddy/framework/module"10)1112func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(module.BlobStore)) {13 t.Skip("storage.blob tests require CGo and sqlite3")14}