mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
19 lines
350 B
Go
19 lines
350 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestCmdDaemon(t *testing.T) {
|
||
|
proxy := NewDaemonProxy()
|
||
|
err := proxy.CmdDaemon("--help")
|
||
|
if err == nil {
|
||
|
t.Fatal("Expected CmdDaemon to fail in Windows.")
|
||
|
}
|
||
|
|
||
|
if !strings.Contains(err.Error(), "Please run `dockerd`") {
|
||
|
t.Fatalf("Expected an error about running dockerd, got %s", err)
|
||
|
}
|
||
|
}
|