Files
zot/swagger/docs_test.go
T
2022-10-20 09:39:20 -07:00

17 lines
249 B
Go

package swagger_test
import (
"testing"
. "github.com/smartystreets/goconvey/convey"
"zotregistry.io/zot/swagger"
)
func TestDocs(t *testing.T) {
Convey("Read docs", t, func() {
s := swagger.New()
So(s.ReadDoc(), ShouldNotBeEmpty)
})
}