mirror of
https://github.com/project-zot/zot.git
synced 2024-12-30 22:34:13 -05:00
4896adad1b
zot: registry server zli: zot cli to interact with the zot registry zui: zot ui (proposed) zb: zot benchmark (proposed) Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
23 lines
439 B
Go
23 lines
439 B
Go
package main_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
"zotregistry.io/zot/pkg/api"
|
|
"zotregistry.io/zot/pkg/api/config"
|
|
"zotregistry.io/zot/pkg/cli"
|
|
)
|
|
|
|
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)
|
|
})
|
|
}
|