class Gurke::RunList

A {RunList} is a list of {Background}, {Scenario} or {Step} objects that can be {#run}.

Public Instance Methods

run(runner, reporter, *args) click to toggle source

Run all backgrounds from this list.

@api private

# File lib/gurke/run_list.rb, line 14
def run(runner, reporter, *args)
  each do |o|
    o.run runner, reporter, *args
  end
end