mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
17 lines
316 B
Go
17 lines
316 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)
|
|
}
|
|
}
|