package docker_test import ( "testing" "github.com/porter-dev/porter/cli/cmd/docker" ) func TestGetServerURL(t *testing.T) { res, err := docker.GetServerURLFromTag("docker.io/testing/test") if err != nil { t.Fatalf("%v", err) } t.Errorf("%s", res) }