grim/convey

update convey/clean to use the Runtime.ConfigPath instead of the working directory.

Fixes CONVEY-189
package podman
import (
"testing"
. "github.com/onsi/gomega"
)
func TestLogout(t *testing.T) {
g := NewGomegaWithT(t)
l := &Logout{
Registry: "docker.io",
}
g.Expect(l.Valid()).To(BeNil())
}
func TestLogoutRegistryRequired(t *testing.T) {
g := NewGomegaWithT(t)
l := &Logout{}
g.Expect(l.Valid()).To(MatchError(ErrNoRegistry))
}