goldsmith/plugins/minify/minify_test.go

18 lines
235 B
Go
Raw Normal View History

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