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

package model

import (
	"strings"
	"testing"
)

func TestSuggestCommandJson(t *testing.T) {
	command := &SuggestCommand{Suggestion: NewId()}
	json := command.ToJson()
	result := SuggestCommandFromJson(strings.NewReader(json))

	if command.Suggestion != result.Suggestion {
		t.Fatal("Ids do not match")
	}
}