frostfs-node/pkg/local_object_storage/pilorama/generic_test.go

17 lines
359 B
Go

package pilorama
import (
"path/filepath"
"testing"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/storagetest"
)
func TestGeneric(t *testing.T) {
newPilorama := func(t *testing.T) storagetest.Component {
return NewBoltForest(WithPath(filepath.Join(t.TempDir(), "pilorama")))
}
storagetest.TestAll(t, newPilorama)
}