From 3864fad99daf173ee6ef517ebe8c30cc663195d0 Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Tue, 10 Sep 2024 18:45:08 -0600 Subject: [PATCH] Wrote down more details on needed Regexp tests --- bytes/regexp_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bytes/regexp_test.go b/bytes/regexp_test.go index d0d4583..a694586 100644 --- a/bytes/regexp_test.go +++ b/bytes/regexp_test.go @@ -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) {