aboutsummaryrefslogtreecommitdiffstats
path: root/identity/identity_stub_test.go
blob: 3d94cd3e23a63ee2df358e06546d9a3ea308b680 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package identity

import (
	"encoding/json"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestIdentityStubSerialize(t *testing.T) {
	before := &IdentityStub{
		id: "id1234",
	}

	data, err := json.Marshal(before)
	assert.NoError(t, err)

	var after IdentityStub
	err = json.Unmarshal(data, &after)
	assert.NoError(t, err)

	assert.Equal(t, before, &after)
}