1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-01 14:51:09 +02:00
seaweedfs/weed/filer/etcd/etcd_store_test.go
2023-05-15 17:46:56 -07:00

17 lines
324 B
Go

package etcd
import (
"github.com/seaweedfs/seaweedfs/weed/filer/store_test"
"testing"
)
func TestStore(t *testing.T) {
// run "make test_etcd" under docker folder.
// to set up local env
if false {
store := &EtcdStore{}
store.initialize("localhost:2379", "", "", "3s")
store_test.TestFilerStore(t, store)
}
}