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.
22 lines
317 B
22 lines
317 B
4 years ago
|
package discovery
|
||
|
|
||
|
// TODO: test this module
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/libp2p/go-libp2p"
|
||
|
)
|
||
|
|
||
|
func TestNewDHTDiscovery(t *testing.T) {
|
||
|
host, err := libp2p.New(context.Background())
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
_, err = NewDHTDiscovery(host, DHTConfig{})
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|