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.
16 lines
316 B
16 lines
316 B
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)
|
|
}
|
|
}
|