gigaparsec/bytes/regexp_test.go

19 lines
353 B
Go
Raw Normal View History

2024-09-10 22:50:14 +00:00
package bytes_test
import "testing"
func Todo(t *testing.T) {
t.Fatalf("TODO")
}
func TestRegexp(t *testing.T) {
t.Run("only searches the beginning of input", Todo)
t.Run("position is correct after match", Todo)
t.Run("fails on unexpected error", Todo)
2024-09-11 20:43:33 +00:00
t.Run("returns a useful Got value", Todo)
2024-09-10 22:50:14 +00:00
}
2024-09-10 22:52:08 +00:00
func TestRuneReader(t *testing.T) {
Todo(t)
}