maddy

Fork https://github.com/foxcpp/maddy

git clone git://git.lin.moe/go/maddy.git

 1//go:build !cgo || no_sqlite3
 2// +build !cgo no_sqlite3
 3
 4package blob
 5
 6import (
 7	"testing"
 8
 9	"github.com/foxcpp/maddy/framework/module"
10)
11
12func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(module.BlobStore)) {
13	t.Skip("storage.blob tests require CGo and sqlite3")
14}