mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 02:47:26 +08:00
16 lines
259 B
Go
16 lines
259 B
Go
package dht_pb
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestBadAddrsDontReturnNil(t *testing.T) {
|
|
mp := new(Message_Peer)
|
|
mp.Addrs = [][]byte{[]byte("NOT A VALID MULTIADDR")}
|
|
|
|
addrs := mp.Addresses()
|
|
if len(addrs) > 0 {
|
|
t.Fatal("shouldnt have any multiaddrs")
|
|
}
|
|
}
|