From 2a4e499be29276d28557b0e7c848cb33233bc0b4 Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Tue, 10 Sep 2024 16:50:14 -0600 Subject: [PATCH] Regexp parser needs tests --- bytes/{bytes.go => regexp.go} | 0 bytes/regexp_test.go | 11 +++++++++++ 2 files changed, 11 insertions(+) rename bytes/{bytes.go => regexp.go} (100%) create mode 100644 bytes/regexp_test.go diff --git a/bytes/bytes.go b/bytes/regexp.go similarity index 100% rename from bytes/bytes.go rename to bytes/regexp.go diff --git a/bytes/regexp_test.go b/bytes/regexp_test.go new file mode 100644 index 0000000..fe1b656 --- /dev/null +++ b/bytes/regexp_test.go @@ -0,0 +1,11 @@ +package bytes_test + +import "testing" + +func Todo(t *testing.T) { + t.Fatalf("TODO") +} + +func TestRegexp(t *testing.T) { + Todo(t) +}