diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-16 13:48:46 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:40:24 +0100 |
commit | cd7ed7ff9e3250c10e97fe16c934b5a6151527bb (patch) | |
tree | e0d6df60e2a04ccb72b3d4c63fc57b4546df458c /identity/bare_test.go | |
parent | 21048e785d976a04e26798e4a385ee675c95b88f (diff) | |
download | git-bug-cd7ed7ff9e3250c10e97fe16c934b5a6151527bb.tar.gz |
identity: add more test for serialisation and push/pull/merge + fixes
Diffstat (limited to 'identity/bare_test.go')
-rw-r--r-- | identity/bare_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/identity/bare_test.go b/identity/bare_test.go index 4b28c7ad..7db9f644 100644 --- a/identity/bare_test.go +++ b/identity/bare_test.go @@ -1,6 +1,7 @@ package identity import ( + "encoding/json" "testing" "github.com/stretchr/testify/assert" @@ -11,3 +12,21 @@ func TestBare_Id(t *testing.T) { id := i.Id() assert.Equal(t, "7b226e616d65223a226e616d65222c22", id) } + +func TestBareSerialize(t *testing.T) { + before := &Bare{ + login: "login", + email: "email", + name: "name", + avatarUrl: "avatar", + } + + data, err := json.Marshal(before) + assert.NoError(t, err) + + var after Bare + err = json.Unmarshal(data, &after) + assert.NoError(t, err) + + assert.Equal(t, before, &after) +} |