aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/etcd/etcd_store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/filer/etcd/etcd_store_test.go')
-rw-r--r--weed/filer/etcd/etcd_store_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/weed/filer/etcd/etcd_store_test.go b/weed/filer/etcd/etcd_store_test.go
new file mode 100644
index 000000000..824c28f5a
--- /dev/null
+++ b/weed/filer/etcd/etcd_store_test.go
@@ -0,0 +1,16 @@
+package etcd
+
+import (
+ "github.com/chrislusf/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)
+ }
+}