containerd/client_unix_test.go
Kenfe-Mickael Laventure 651aaff74e
Update integration test to support windows
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2017-07-21 18:19:51 +02:00

14 lines
266 B
Go

// +build !windows
package containerd
const (
defaultRoot = "/var/lib/containerd-test"
defaultAddress = "/run/containerd-test/containerd.sock"
testImage = "docker.io/library/alpine:latest"
)
func platformTestSetup(client *Client) error {
return nil
}