Sha256: ea58f390f3a23fee6f408b908564d6a9ea7a4572e6a82b8c151b2708f5640d12
Contents?: true
Size: 341 Bytes
Versions: 18
Compression:
Stored size: 341 Bytes
Contents
module Gurke # # A {RunList} is a list of {Background}, {Scenario} # or {Step} objects that can be {#run}. # class RunList < Array # # Run all backgrounds from this list. # # @api private # def run(runner, reporter, *args) each do |o| o.run runner, reporter, *args end end end end
Version data entries
18 entries across 18 versions & 1 rubygems