Files
mostlymatter/cmd/mattermost/commands/version_test.go
2021-06-14 12:10:23 +02:00

20 строки
345 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package commands
import (
"testing"
)
func TestVersion(t *testing.T) {
if testing.Short() {
t.Skip("skipping version test in short mode")
}
th := SetupWithStoreMock(t)
defer th.TearDown()
th.CheckCommand(t, "version")
}