reg/tags_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
311 B
Go

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