提交 854ae2c5 作者: Jeromy

Merge branch 'master' of github.com:llSourcell/go-ipfs

......@@ -11,6 +11,7 @@ import (
swarm "github.com/jbenet/go-ipfs/swarm"
u "github.com/jbenet/go-ipfs/util"
"bytes"
"fmt"
"time"
)
......@@ -179,6 +180,7 @@ func TestValueGetSet(t *testing.T) {
if string(val) != "world" {
t.Fatalf("Expected 'world' got '%s'", string(val))
}
}
func TestProvides(t *testing.T) {
......@@ -206,6 +208,11 @@ func TestProvides(t *testing.T) {
t.Fatal(err)
}
bits, err := dhts[3].getLocal(u.Key("hello"))
if err != nil && bytes.Equal(bits, []byte("world")) {
t.Fatal(err)
}
err = dhts[3].Provide(u.Key("hello"))
if err != nil {
t.Fatal(err)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论