summaryrefslogtreecommitdiffstats
path: root/api/command_shortcuts_test.go
diff options
context:
space:
mode:
authorDavid Lu <david.lu@hotmail.com>2016-05-19 07:35:12 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-05-19 07:35:12 -0400
commit5ace856e72b23920d9448d4eb11e0bc4ccbf11f0 (patch)
treee778c1d107c7c55eb3368ffef6e76d3aa2714c27 /api/command_shortcuts_test.go
parent4f34730b3f82ee3fc1a21f3f2bf7ee5a5f8f3c0a (diff)
downloadchat-5ace856e72b23920d9448d4eb11e0bc4ccbf11f0.tar.gz
chat-5ace856e72b23920d9448d4eb11e0bc4ccbf11f0.tar.bz2
chat-5ace856e72b23920d9448d4eb11e0bc4ccbf11f0.zip
Added /shortcuts (#3048)
Added message and tests Remember that lower vs uppercase matters Accidentally removed \n Added more Formatted
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")
+ }
+}