18 lines
235 B
Go
18 lines
235 B
Go
|
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())
|
||
|
},
|
||
|
)
|
||
|
}
|