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