Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack) Upstream-commit: 6db32fdefdae49843ed9535b3af1099e6bd2755d Component: engine
21 lines
431 B
Go
21 lines
431 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestImagesEnsureImageIsListed(t *testing.T) {
|
|
imagesCmd := exec.Command(dockerBinary, "images")
|
|
out, _, err := runCommandWithOutput(imagesCmd)
|
|
errorOut(err, t, fmt.Sprintf("listing images failed with errors: %v", err))
|
|
|
|
if !strings.Contains(out, "busybox") {
|
|
t.Fatal("images should've listed busybox")
|
|
}
|
|
|
|
logDone("images - busybox should be listed")
|
|
}
|