cwtch/peer/cwtch_peer_test.go

18 lines
346 B
Go
Raw Normal View History

package peer
2018-03-09 20:44:13 +00:00
import (
"testing"
)
func TestCwtchPeerGenerate(t *testing.T) {
alice := NewCwtchPeer("alice")
alice.Save("./test_profile")
aliceLoaded, err := LoadCwtchPeer("./test_profile")
if err != nil || aliceLoaded.Profile.Name != "alice" {
t.Errorf("something went wrong saving and loading profiles %v %v", err, aliceLoaded)
2018-03-09 20:44:13 +00:00
}
2018-03-09 20:44:13 +00:00
}