//go:build search // +build search package main_test import ( "testing" . "github.com/smartystreets/goconvey/convey" "zotregistry.io/zot/pkg/api" "zotregistry.io/zot/pkg/api/config" cli "zotregistry.io/zot/pkg/cli/client" ) func TestIntegration(t *testing.T) { Convey("Make a new controller", t, func() { conf := config.New() c := api.NewController(conf) So(c, ShouldNotBeNil) cl := cli.NewCliRootCmd() So(cl, ShouldNotBeNil) So(cl.Execute(), ShouldBeNil) }) }