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