mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Blob storage would also benefit from stress testing and concurrency consistency tests. But these are things that are probably also worth adding to go-imap-backend-tests instead.
13 lines
264 B
Go
13 lines
264 B
Go
//+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")
|
|
}
|