Adapt the CLI to the host install model for 18.09.
Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
(cherry picked from commit 342afe44fb)
Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
15 lines
214 B
Go
15 lines
214 B
Go
package engine
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
)
|
|
|
|
func TestNewEngineCommand(t *testing.T) {
|
|
cmd := NewEngineCommand(testCli)
|
|
|
|
subcommands := cmd.Commands()
|
|
assert.Assert(t, len(subcommands) == 3)
|
|
}
|