0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-16 21:56:37 -05:00
zot/docs/docs_test.go

16 lines
241 B
Go
Raw Normal View History

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)
})
}