2022-08-22 11:47:05 +00:00
|
|
|
package blobstor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/storagetest"
|
2022-08-22 11:47:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGeneric(t *testing.T) {
|
|
|
|
|
|
|
|
newMetabase := func(t *testing.T) storagetest.Component {
|
|
|
|
return New(
|
2023-03-21 10:38:44 +00:00
|
|
|
WithStorages(defaultStorages(t.TempDir(), 128)))
|
2022-08-22 11:47:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
storagetest.TestAll(t, newMetabase)
|
|
|
|
}
|