From d7c1c675ff5bfea9c8e2df6fdd8a911c22489f01 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Wed, 25 May 2022 17:28:11 -0600 Subject: [PATCH] Add missing require for spec_helper --- spec/docs/helper_methods_spec.cr | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/docs/helper_methods_spec.cr b/spec/docs/helper_methods_spec.cr index ddfb34e..26d85d2 100644 --- a/spec/docs/helper_methods_spec.cr +++ b/spec/docs/helper_methods_spec.cr @@ -1,3 +1,5 @@ +require "../spec_helper" + Spectator.describe String do # This is a helper method. def random_string(length) @@ -15,6 +17,7 @@ Spectator.describe String do end end end + Spectator.describe String do # length is now pulled from value defined by `let`. def random_string