summaryrefslogtreecommitdiffstats
path: root/api/command_shortcuts_test.go
blob: a00bd34405abbbad362676d4cddb761e12849f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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")
	}
}