goldsmith/plugins/frontmatter/frontmatter_test.go

21 lines
319 B
Go
Raw Normal View History

2024-02-17 06:35:49 +00:00
package frontmatter
import (
"testing"
"git.foosoft.net/alex/goldsmith"
"git.foosoft.net/alex/goldsmith/harness"
"git.foosoft.net/alex/goldsmith/plugins/layout"
)
func Test(self *testing.T) {
harness.Validate(
self,
func(gs *goldsmith.Goldsmith) {
gs.
Chain(New()).
Chain(layout.New())
},
)
}