grim/convey

Overhaul the readme
redux
2021-12-20, Gary Kramlich
803836d06be3
Overhaul the readme
package podman
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestRemove(t *testing.T) {
r := &Remove{
Tags: []string{"foo"},
}
assert.NoError(t, r.Valid())
}
func TestRemoveTagsRequired(t *testing.T) {
r := &Remove{}
assert.ErrorIs(t, r.Valid(), ErrNoTags)
}