reg/list_test.go
Jess Frazelle 72cd07cf34
add more tests
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-06 10:14:23 -05:00

20 lines
371 B
Go

package main
import (
"strings"
"testing"
)
func TestList(t *testing.T) {
out, err := run("ls")
if err != nil {
t.Fatalf("output: %s, error: %v", string(out), err)
}
expected := `REPO TAGS
busybox glibc, musl
alpine latest
`
if !strings.HasSuffix(out, expected) {
t.Fatalf("expected: %s\ngot: %s", expected, out)
}
}