Alejandro Lopez
ae8be495c8
Some checks failed
Vulncheck / Vulncheck (pull_request) Successful in 2m36s
Build / Build Components (1.21) (pull_request) Successful in 3m33s
DCO action / DCO (pull_request) Successful in 3m33s
Tests and linters / Staticcheck (pull_request) Successful in 4m15s
Tests and linters / Lint (pull_request) Successful in 5m31s
Build / Build Components (1.20) (pull_request) Successful in 7m2s
Tests and linters / Tests with -race (pull_request) Failing after 8m51s
Tests and linters / Tests (1.20) (pull_request) Successful in 9m55s
Tests and linters / Tests (1.21) (pull_request) Successful in 10m6s
Signed-off-by: Alejandro Lopez <a.lopez@yadro.com>
16 lines
359 B
Go
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)
|
|
}
|