1
1
mirror of https://github.com/wader/fq.git synced 2024-09-19 07:47:14 +03:00
fq/internal/lazyre/lazyre_test.go
Mattias Wadman e2eb667091 html: Add to probe group
As decoder now can know they are decoding as part of probing we can now
use some heuristics to see if we should decode as html.
The reason heuristics is needed is that x/html parser will alwaus succeed.

Add lazyre package to help delay compile of RE and make it concurrency safe.
2023-05-11 19:07:18 +02:00

14 lines
221 B
Go

package lazyre_test
import (
"testing"
"github.com/wader/fq/internal/lazyre"
)
func TestMust(t *testing.T) {
if !lazyre.New("a").Must().MatchString("a") {
t.Fatal("should compile and be non-nil and match a")
}
}