Wrote down more details on needed Regexp tests

This commit is contained in:
Brandon Dyck 2024-09-10 18:45:08 -06:00
parent 3e178e74fd
commit 3864fad99d

View File

@ -7,7 +7,9 @@ func Todo(t *testing.T) {
}
func TestRegexp(t *testing.T) {
Todo(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) {