mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
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)
|
||
|
})
|
||
|
}
|