gigaparsec/bytes/regexp_test.go

18 lines
310 B
Go

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)
}
func TestRuneReader(t *testing.T) {
Todo(t)
}