Files
zot/swagger/docs_test.go
T
2024-01-31 20:34:07 -08:00

17 lines
256 B
Go

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