forked from cerc-io/plugeth
16 lines
242 B
Go
16 lines
242 B
Go
|
package qwhisper
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/ethereum/go-ethereum/whisper"
|
||
|
)
|
||
|
|
||
|
func TestHasIdentity(t *testing.T) {
|
||
|
qw := New(whisper.New())
|
||
|
id := qw.NewIdentity()
|
||
|
if !qw.HasIdentity(id) {
|
||
|
t.Error("expected to have identity")
|
||
|
}
|
||
|
}
|