aboutsummaryrefslogblamecommitdiffstats
path: root/identity/identity_stub_test.go
blob: 3d94cd3e23a63ee2df358e06546d9a3ea308b680 (plain) (tree)






















                                              
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)
}