summaryrefslogtreecommitdiffstats
path: root/api/command_shortcuts_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/command_shortcuts_test.go')
-rw-r--r--api/command_shortcuts_test.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/api/command_shortcuts_test.go b/api/command_shortcuts_test.go
new file mode 100644
index 000000000..a00bd3440
--- /dev/null
+++ b/api/command_shortcuts_test.go
@@ -0,0 +1,21 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api
+
+import (
+ "github.com/mattermost/platform/model"
+ "strings"
+ "testing"
+)
+
+func TestShortcutsCommand(t *testing.T) {
+ th := Setup().InitBasic()
+ Client := th.BasicClient
+ channel := th.BasicChannel
+
+ rs := Client.Must(Client.Command(channel.Id, "/shortcuts ", false)).Data.(*model.CommandResponse)
+ if !strings.Contains(rs.Text, "ALT") {
+ t.Fatal("failed to display shortcuts")
+ }
+}