summaryrefslogtreecommitdiffstats
path: root/api/command_open_test.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-06-26 09:36:47 -0700
committerChristopher Speller <crspeller@gmail.com>2017-06-26 09:36:47 -0700
commit14467ee1347de69aad7d83d305c413a5f0b5f6c2 (patch)
treef5a6e7e4a07d415b660b9c01eb678f4d304a0717 /api/command_open_test.go
parente285839ee1322b8f16bdd15b76ef2d0f62bf154f (diff)
downloadchat-14467ee1347de69aad7d83d305c413a5f0b5f6c2.tar.gz
chat-14467ee1347de69aad7d83d305c413a5f0b5f6c2.tar.bz2
chat-14467ee1347de69aad7d83d305c413a5f0b5f6c2.zip
add /open command (#6717)
Diffstat (limited to 'api/command_open_test.go')
-rw-r--r--api/command_open_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/api/command_open_test.go b/api/command_open_test.go
new file mode 100644
index 000000000..61e3861d8
--- /dev/null
+++ b/api/command_open_test.go
@@ -0,0 +1,12 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api
+
+import (
+ "testing"
+)
+
+func TestOpenCommands(t *testing.T) {
+ testJoinCommands(t, "open")
+}