class Benchmarks::Helpers::Specification::SlowAnimal
Show a different slow animal each time SlowAnimal.show is called:
-
🐨 - Koala
-
🐌 - Snail
-
🐢 - Turtle
-
🦥 - Sloth
Public Class Methods
Source
# File benchmarks/benchmarks_helpers.rb, line 155 def self.show(before: "", around: "", after: "") @@slow_animals.rotate! before + around + @@slow_animals.first + around + after end