blob: 24a1389b1666e1b40f3408fcd0c1bfea4c01068c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package commands
import (
"testing"
"github.com/mattermost/mattermost-server/cmd"
)
func TestVersion(t *testing.T) {
cmd.CheckCommand(t, "version")
}
|