Mono repo -> Master (#22553)
Combines the following repositories into one: https://github.com/mattermost/mattermost-server https://github.com/mattermost/mattermost-webapp https://github.com/mattermost/focalboard https://github.com/mattermost/mattermost-plugin-playbooks
Этот коммит содержится в:
27
server/channels/app/slashcommands/command_me_test.go
Обычный файл
27
server/channels/app/slashcommands/command_me_test.go
Обычный файл
@@ -0,0 +1,27 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
package slashcommands
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/mattermost/mattermost-server/v6/model"
|
||||
)
|
||||
|
||||
func TestMeProviderDoCommand(t *testing.T) {
|
||||
th := setup(t)
|
||||
defer th.tearDown()
|
||||
|
||||
mp := MeProvider{}
|
||||
|
||||
msg := "hello"
|
||||
|
||||
resp := mp.DoCommand(th.App, th.Context, &model.CommandArgs{}, msg)
|
||||
|
||||
assert.Equal(t, model.CommandResponseTypeInChannel, resp.ResponseType)
|
||||
assert.Equal(t, model.PostTypeMe, resp.Type)
|
||||
assert.Equal(t, "*"+msg+"*", resp.Text)
|
||||
}
|
||||
Ссылка в новой задаче
Block a user