summaryrefslogtreecommitdiffstats
path: root/model/team_signup_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/team_signup_test.go')
-rw-r--r--model/team_signup_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/model/team_signup_test.go b/model/team_signup_test.go
deleted file mode 100644
index a830842aa..000000000
--- a/model/team_signup_test.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package model
-
-import (
- "strings"
- "testing"
-)
-
-func TestTeamSignupJson(t *testing.T) {
- team := Team{Id: NewId(), DisplayName: NewId()}
- o := TeamSignup{Team: team, Data: "data"}
- json := o.ToJson()
- ro := TeamSignupFromJson(strings.NewReader(json))
-
- if o.Team.Id != ro.Team.Id {
- t.Fatal("Ids do not match")
- }
-}