mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
31 lines
556 B
Go
31 lines
556 B
Go
|
// +build daemon
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/docker/docker/pkg/testutil/assert"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func stubRun(cmd *cobra.Command, args []string) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func TestDaemonCommandHelp(t *testing.T) {
|
||
|
cmd := newDaemonCommand()
|
||
|
cmd.RunE = stubRun
|
||
|
cmd.SetArgs([]string{"--help"})
|
||
|
err := cmd.Execute()
|
||
|
assert.NilError(t, err)
|
||
|
}
|
||
|
|
||
|
func TestDaemonCommand(t *testing.T) {
|
||
|
cmd := newDaemonCommand()
|
||
|
cmd.RunE = stubRun
|
||
|
cmd.SetArgs([]string{"--containerd", "/foo"})
|
||
|
err := cmd.Execute()
|
||
|
assert.NilError(t, err)
|
||
|
}
|