Files
zot/docs/docs_test.go
T
Ramkumar Chinchani 2d9c1f52ea docs: improve docs coverage
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
2021-10-14 09:22:34 -07:00

16 lines
241 B
Go

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