summaryrefslogtreecommitdiffstats
path: root/CLI/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/ruby')
-rw-r--r--CLI/ruby/spec/game_of_life_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/CLI/ruby/spec/game_of_life_spec.rb b/CLI/ruby/spec/game_of_life_spec.rb
index 285b766..5e99ca8 100644
--- a/CLI/ruby/spec/game_of_life_spec.rb
+++ b/CLI/ruby/spec/game_of_life_spec.rb
@@ -151,6 +151,7 @@ RSpec.describe GameOfLife do
describe ".render" do
let(:universe) { GameOfLife::Universe.new(width: 3, height: 3) }
+ # rubocop:disable RSpec/AnyInstance
it "renders the game of life presentation" do
stub_const("BANNER", "")
stub_const("DELAY", 100.0)
@@ -161,5 +162,6 @@ RSpec.describe GameOfLife do
described_class.render(universe)
end
+ # rubocop:enable RSpec/AnyInstance
end
end