goldsmith/plugins/sideload/sideload_test.go

23 lines
317 B
Go
Raw Normal View History

2024-04-19 05:03:15 +00:00
package sideload
import (
"testing"
"embed"
"git.foosoft.net/alex/goldsmith"
"git.foosoft.net/alex/goldsmith/harness"
)
//go:embed testdata/source
var embedFs embed.FS
func Test(self *testing.T) {
harness.Validate(
self,
func(gs *goldsmith.Goldsmith) {
gs.Chain(New().FileSystems(embedFs))
},
)
}