summaryrefslogtreecommitdiffstats
path: root/model/initial_load_test.go
blob: ecae7ac8812eb08f95633b2bf308d6c33aa08646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"strings"
	"testing"
)

func TestInitialLoadJson(t *testing.T) {
	u := &User{Id: NewId()}
	o := InitialLoad{User: u}
	json := o.ToJson()
	ro := InitialLoadFromJson(strings.NewReader(json))

	if o.User.Id != ro.User.Id {
		t.Fatal("Ids do not match")
	}
}