grim/convey

Move plans to the runtime package

2021-12-23, Gary Kramlich
178aec6c4f86
Move plans to the runtime package
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)
}