mirror of https://github.com/docker/cli.git
Merge pull request #1072 from AntaresS/add-inspect-test
move inspect test from moby to cli
This commit is contained in:
commit
0022bb83ea
|
@ -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