mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 04:17:55 +08:00
2d9c1f52ea
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
16 lines
241 B
Go
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)
|
|
})
|
|
}
|