docs: improve docs coverage

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
This commit is contained in:
Ramkumar Chinchani
2021-10-14 03:13:48 +00:00
committed by Ramkumar Chinchani
parent d930adbd49
commit 2d9c1f52ea
2 changed files with 19 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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)
})
}