1
0
mirror of https://github.com/moby/moby.git synced 2025-11-09 13:41:11 +03:00

Introduce a cli package for test-integration

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester
2017-03-23 18:35:22 +01:00
parent ad530ffee0
commit 50c4475df6
33 changed files with 572 additions and 414 deletions

View File

@@ -12,6 +12,7 @@ import (
"time"
"github.com/docker/docker/integration-cli/checker"
"github.com/docker/docker/integration-cli/cli/build"
icmd "github.com/docker/docker/pkg/testutil/cmd"
"github.com/go-check/check"
"github.com/kr/pty"
@@ -71,7 +72,7 @@ func (s *DockerSuite) TestSaveAndLoadRepoStdout(c *check.C) {
func (s *DockerSuite) TestSaveAndLoadWithProgressBar(c *check.C) {
name := "test-load"
buildImageSuccessfully(c, name, withDockerfile(`FROM busybox
buildImageSuccessfully(c, name, build.WithDockerfile(`FROM busybox
RUN touch aa
`))