summaryrefslogtreecommitdiffstats
path: root/api/command_settings_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/command_settings_test.go')
-rw-r--r--api/command_settings_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/api/command_settings_test.go b/api/command_settings_test.go
new file mode 100644
index 000000000..f34154f39
--- /dev/null
+++ b/api/command_settings_test.go
@@ -0,0 +1,13 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api
+
+import (
+ "testing"
+)
+
+func TestSettingsCommand(t *testing.T) {
+ th := Setup().InitBasic()
+ th.BasicClient.Must(th.BasicClient.Command(th.BasicChannel.Id, "/settings"))
+}