mirror of
https://github.com/project-zot/zot.git
synced 2025-01-06 22:40:28 -05:00
23 lines
441 B
Go
23 lines
441 B
Go
|
package main //nolint:testpackage // separate binary
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/smartystreets/goconvey/convey"
|
||
|
"zotregistry.io/zot/pkg/api"
|
||
|
"zotregistry.io/zot/pkg/api/config"
|
||
|
)
|
||
|
|
||
|
func TestIntegration(t *testing.T) {
|
||
|
Convey("Make a new controller", t, func() {
|
||
|
conf := config.New()
|
||
|
c := api.NewController(conf)
|
||
|
So(c, ShouldNotBeNil)
|
||
|
|
||
|
cl := NewPerfRootCmd()
|
||
|
So(cl, ShouldNotBeNil)
|
||
|
|
||
|
So(cl.Execute(), ShouldBeNil)
|
||
|
})
|
||
|
}
|