mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
14 lines
295 B
Go
14 lines
295 B
Go
//go:build !cgo || no_sqlite3
|
|
// +build !cgo no_sqlite3
|
|
|
|
package blob
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/foxcpp/maddy/framework/module"
|
|
)
|
|
|
|
func TestStore(t *testing.T, newStore func() module.BlobStore, cleanStore func(module.BlobStore)) {
|
|
t.Skip("storage.blob tests require CGo and sqlite3")
|
|
}
|