22 lines
365 B
Go
22 lines
365 B
Go
package meowlib
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreate(t *testing.T) {
|
|
id := CreateIdentity("myname")
|
|
id.Save("test.id")
|
|
}
|
|
|
|
func TestLoad(t *testing.T) {
|
|
id, err := LoadIdentity("test.id")
|
|
if err != nil {
|
|
log.Println(err.Error())
|
|
}
|
|
assert.Equal(t, id.Nickname, "myname", "The two words should be the same.")
|
|
}
|