summaryrefslogtreecommitdiffstats
path: root/api/context_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/context_test.go')
-rw-r--r--api/context_test.go29
1 files changed, 0 insertions, 29 deletions
diff --git a/api/context_test.go b/api/context_test.go
deleted file mode 100644
index 95a8459ff..000000000
--- a/api/context_test.go
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package api
-
-import (
- "testing"
-)
-
-func TestSiteURLHeader(t *testing.T) {
- c := &Context{}
-
- testCases := []struct {
- url string
- want string
- }{
- {"http://mattermost.com/", "http://mattermost.com"},
- {"http://mattermost.com", "http://mattermost.com"},
- }
-
- for _, tc := range testCases {
- c.SetSiteURLHeader(tc.url)
-
- if c.siteURLHeader != tc.want {
- t.Fatalf("expected %s, got %s", tc.want, c.siteURLHeader)
- }
- }
-
-}