frostfs-node/pkg/local_object_storage/pilorama/generic_test.go
Alejandro Lopez ae8be495c8 [#xx] Avoid manual management of files in tests
Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
2023-08-14 14:01:39 +03:00

16 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)
}