seaweedfs/weed/filer/etcd/etcd_store_test.go

15 lines
294 B
Go
Raw Normal View History

package etcd
import (
"github.com/chrislusf/seaweedfs/weed/filer/store_test"
"testing"
)
func TestStore(t *testing.T) {
2022-05-06 09:19:47 +00:00
if false { // turn on the testing when local env is set up
store := &EtcdStore{}
store.initialize("localhost:2379", "3s")
store_test.TestFilerStore(t, store)
}
}