move inspect test from moby to cli
Signed-off-by: Anda Xu <anda.xu@docker.com>
This commit is contained in:
Родитель
26123be73b
Коммит
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",
|
||||
})
|
||||
}
|
Загрузка…
Ссылка в новой задаче