Files
mattermost/server/cmd/mmctl/commands/mmctl_unit_test.go
Miguel de la Cruz 951456c780 Includes mmctl into the mono-repo (#23091)
* Includes mmctl into the mono-repo

* Update to use the new public module paths

* Adds docs check to the mmctl CI

* Fix public utils import path

* Tidy up modules

* Fix linter

* Update CI tasks to use the new file structure

* Update CI references
2023-06-05 12:42:55 +02:00

18 lines
305 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
//go:build unit
// +build unit
package commands
import (
"testing"
"github.com/stretchr/testify/suite"
)
func TestMmctlUnitSuite(t *testing.T) {
suite.Run(t, new(MmctlUnitTestSuite))
}