blob: a92b676ad4dd019e96b01febb90990978ce290d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2015 Spinpunch, 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")
}
}
|