You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
399 B

  1. //go:build ydb
  2. // +build ydb
  3. package ydb
  4. import (
  5. "github.com/seaweedfs/seaweedfs/weed/filer/store_test"
  6. "testing"
  7. )
  8. func TestStore(t *testing.T) {
  9. // run "make test_ydb" under docker folder.
  10. // to set up local env
  11. if false {
  12. store := &YdbStore{}
  13. store.initialize("/buckets", "grpc://localhost:2136/?database=local", "seaweedfs", true, 10, 50)
  14. store_test.TestFilerStore(t, store)
  15. }
  16. }