mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
27 lines
412 B
Go
27 lines
412 B
Go
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)
|
|
|
|
// enforce creating the Id
|
|
before.Id()
|
|
|
|
assert.Equal(t, before, &after)
|
|
}
|