goldsmith/filters/wildcard/wildcard_test.go

18 lines
254 B
Go
Raw Normal View History

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