Regexp parser needs tests

This commit is contained in:
Brandon Dyck 2024-09-10 16:50:14 -06:00
parent 96d178efef
commit 2a4e499be2
2 changed files with 11 additions and 0 deletions

11
bytes/regexp_test.go Normal file
View File

@ -0,0 +1,11 @@
package bytes_test
import "testing"
func Todo(t *testing.T) {
t.Fatalf("TODO")
}
func TestRegexp(t *testing.T) {
Todo(t)
}