1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

Merge pull request #1076 from vdemeester/fix-e2e-system

Fix e2e/system tests
This commit is contained in:
Vincent Demeester
2018-05-22 14:46:44 +02:00
committed by GitHub
2 changed files with 20 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ func TestInspectInvalidReference(t *testing.T) {
// This test should work on both Windows and Linux
result := icmd.RunCmd(icmd.Command("docker", "inspect", "FooBar"))
result.Assert(t, icmd.Expected{
Out: "[]\nError: No such object: FooBar",
Out: "[]",
Err: "Error: No such object: FooBar",
ExitCode: 1,
})
}

17
e2e/system/main_test.go Normal file
View File

@@ -0,0 +1,17 @@
package system
import (
"fmt"
"os"
"testing"
"github.com/docker/cli/internal/test/environment"
)
func TestMain(m *testing.M) {
if err := environment.Setup(); err != nil {
fmt.Println(err.Error())
os.Exit(3)
}
os.Exit(m.Run())
}