mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
15 lines
246 B
Go
15 lines
246 B
Go
|
package etcd
|
||
|
|
||
|
import (
|
||
|
"github.com/chrislusf/seaweedfs/weed/filer/store_test"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestStore(t *testing.T) {
|
||
|
if false {
|
||
|
store := &EtcdStore{}
|
||
|
store.initialize("localhost:2379", "3s")
|
||
|
store_test.TestFilerStore(t, store)
|
||
|
}
|
||
|
}
|