0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-30 22:34:13 -05:00
zot/swagger/docs_test.go
Ramkumar Chinchani 8f3d7d3719 swagger: rename 'docs/' to 'swagger/'
Use 'docs/' for zot-related documentation.

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
2021-10-21 13:46:14 -07:00

15 lines
250 B
Go

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