aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/ydb/ydb_store_test.go
blob: cb3c770182f1ca91521c1a6bc8f56afca7d39542 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//go:build ydb
// +build ydb

package ydb

import (
	"github.com/chrislusf/seaweedfs/weed/filer/store_test"
	"testing"
)

func TestStore(t *testing.T) {
	// run "make test_ydb" under docker folder.
	// to set up local env
	if false {
		store := &YdbStore{}
		store.initialize("/buckets", "grpc://localhost:2136/?database=local", "seaweedfs", true, 10, 50)
		store_test.TestFilerStore(t, store)
	}
}