exec hof mod init hof.io/test
cmp cue.mod/module.cue match/cue.mod/module-init.cue

exec hof mod get github.com/hofstadter-io/test-hof-mod-public-e@v0.0.1
cmp cue.mod/module.cue match/cue.mod/module-get.cue

exec hof mod get github.com/hofstadter-io/test-hof-mod-public-e@v0.0.3
cmp cue.mod/module.cue match/cue.mod/module-update.cue

-- match/cue.mod/module-init.cue --
module: "hof.io/test"
cue: "0.8.2"
-- match/cue.mod/module-get.cue --
module: "hof.io/test"
cue:    "0.8.2"

require: {
	"github.com/hofstadter-io/test-hof-mod-public-e": "v0.0.1"
}

-- match/cue.mod/module-update.cue --
module: "hof.io/test"
cue:    "0.8.2"

require: {
	"github.com/hofstadter-io/test-hof-mod-public-e": "v0.0.3"
}
