add /search command (#6741)

This commit is contained in:
Chris
2017-07-04 18:26:31 -07:00
committed by Saturnino Abril
parent 8f8a978e84
commit 5bd60a4d1e
4 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package api
import (
"testing"
)
func TestSearchCommand(t *testing.T) {
th := Setup().InitBasic()
th.BasicClient.Must(th.BasicClient.Command(th.BasicChannel.Id, "/search"))
}