2022-08-22 11:43:09 +00:00
|
|
|
package pilorama
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"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:43:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGeneric(t *testing.T) {
|
|
|
|
newPilorama := func(t *testing.T) storagetest.Component {
|
2023-08-14 11:01:39 +00:00
|
|
|
return NewBoltForest(WithPath(filepath.Join(t.TempDir(), "pilorama")))
|
2022-08-22 11:43:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
storagetest.TestAll(t, newPilorama)
|
|
|
|
}
|