diff options
author | Michael Muré <batolettre@gmail.com> | 2020-07-01 20:00:53 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-10-04 20:50:15 +0200 |
commit | 499dbc0a032ff28eea99e5308be9b6c8f2d208ad (patch) | |
tree | 0ebfbc122240736292338275a5b599abaa7d710b /identity/bare_test.go | |
parent | 5d1fc3ff393133a8aa67b97f9beecfe9b57c7e56 (diff) | |
download | git-bug-499dbc0a032ff28eea99e5308be9b6c8f2d208ad.tar.gz |
identity: remove support for legacy identity
Diffstat (limited to 'identity/bare_test.go')
-rw-r--r-- | identity/bare_test.go | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/identity/bare_test.go b/identity/bare_test.go deleted file mode 100644 index 335c8d37..00000000 --- a/identity/bare_test.go +++ /dev/null @@ -1,37 +0,0 @@ -package identity - -import ( - "encoding/json" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/MichaelMure/git-bug/entity" -) - -func TestBare_Id(t *testing.T) { - i := NewBare("name", "email") - id := i.Id() - expected := entity.Id("e18b853fbd89d5d40ca24811539c9a800c705abd9232f396954e8ca8bb63fa8a") - assert.Equal(t, expected, 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) - - before.id = after.id - - assert.Equal(t, before, &after) -} |