Files
docker-cli/cli/command/system/client_test.go
T
2017-07-17 11:55:35 +02:00

16 lines
193 B
Go

package system
import (
"github.com/docker/docker/client"
)
type fakeClient struct {
client.Client
version string
}
func (cli *fakeClient) ClientVersion() string {
return cli.version
}