grim/convey

c1a95d79fcc5
Dump govcs in here for now until i can sort out this out
package podman
import (
"testing"
. "github.com/onsi/gomega"
)
func TestRemove(t *testing.T) {
g := NewGomegaWithT(t)
r := &Remove{
Tags: []string{"foo"},
}
g.Expect(r.Valid()).To(BeNil())
}
func TestRemoveTagsRequired(t *testing.T) {
g := NewGomegaWithT(t)
r := &Remove{}
g.Expect(r.Valid()).To(MatchError(ErrNoTags))
}