grim/convey

update the dependencies
redux
2021-12-18, Gary Kramlich
8d1e9a570376
update the dependencies
package podman
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestLogout(t *testing.T) {
l := &Logout{
Registry: "docker.io",
}
assert.NoError(t, l.Valid())
}
func TestLogoutRegistryRequired(t *testing.T) {
l := &Logout{}
assert.ErrorIs(t, l.Valid(), ErrNoRegistry)
}