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.

14 lines
246 B

  1. package etcd
  2. import (
  3. "github.com/chrislusf/seaweedfs/weed/filer/store_test"
  4. "testing"
  5. )
  6. func TestStore(t *testing.T) {
  7. if false {
  8. store := &EtcdStore{}
  9. store.initialize("localhost:2379", "3s")
  10. store_test.TestFilerStore(t, store)
  11. }
  12. }