16 lines
335 B
Go
16 lines
335 B
Go
package blobstor
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/storagetest"
|
|
)
|
|
|
|
func TestGeneric(t *testing.T) {
|
|
newMetabase := func(t *testing.T) storagetest.Component {
|
|
return New(
|
|
WithStorages(defaultStorages(t.TempDir(), 128)))
|
|
}
|
|
|
|
storagetest.TestAll(t, newMetabase)
|
|
}
|