mirror of https://github.com/docker/cli.git
move inspect test from moby to cli
Signed-off-by: Anda Xu <anda.xu@docker.com>
This commit is contained in:
parent
26123be73b
commit
2d8d5fcd30
|
@ -0,0 +1,16 @@
|
|||
package system
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/gotestyourself/gotestyourself/icmd"
|
||||
)
|
||||
|
||||
// TestInspectInvalidReference migrated from moby/integration-cli
|
||||
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",
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue