package layout import ( "testing" "git.foosoft.net/alex/goldsmith" "git.foosoft.net/alex/goldsmith/harness" "git.foosoft.net/alex/goldsmith/plugins/frontmatter" ) func Test(self *testing.T) { harness.Validate( self, func(gs *goldsmith.Goldsmith) { gs. Chain(frontmatter.New()). Chain(New().DefaultLayout("page")) }, ) }