Files
docker-cli/cli/command/engine/cmd_test.go
T
2020-04-21 16:43:18 +02:00

15 lines
217 B
Go

package engine
import (
"testing"
"gotest.tools/v3/assert"
)
func TestNewEngineCommand(t *testing.T) {
cmd := NewEngineCommand(testCli)
subcommands := cmd.Commands()
assert.Assert(t, len(subcommands) == 3)
}