summaryrefslogtreecommitdiffstats
path: root/model/system_test.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-09-18 12:22:57 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-09-18 12:22:57 -0400
commit5a436fd447753124b3f7705ecb123ecf5762bc24 (patch)
treed0b37402b2eead725bf0e3d1de37727f64c01315 /model/system_test.go
parent7caef4a7a7287433ed274c4f20d3593ea4065b66 (diff)
parentc63da249640e50b1c93c5c5ff7b5d598aa737b1e (diff)
downloadchat-5a436fd447753124b3f7705ecb123ecf5762bc24.tar.gz
chat-5a436fd447753124b3f7705ecb123ecf5762bc24.tar.bz2
chat-5a436fd447753124b3f7705ecb123ecf5762bc24.zip
Merge pull request #699 from mattermost/PLT-92
PLT-92 Adding server side versioning to the binary
Diffstat (limited to 'model/system_test.go')
-rw-r--r--model/system_test.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/model/system_test.go b/model/system_test.go
new file mode 100644
index 000000000..14ba0db2e
--- /dev/null
+++ b/model/system_test.go
@@ -0,0 +1,19 @@
+// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package model
+
+import (
+ "strings"
+ "testing"
+)
+
+func TestSystemJson(t *testing.T) {
+ system := System{Name: "test", Value: NewId()}
+ json := system.ToJson()
+ result := SystemFromJson(strings.NewReader(json))
+
+ if result.Name != "test" {
+ t.Fatal("Ids do not match")
+ }
+}