Class: Gurke::RunList

Inherits:
Array
  • Object
show all
Defined in:
lib/gurke/run_list.rb

Overview

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

Instance Method Summary collapse

Instance Method Details

#run(runner, reporter, *args) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Run all backgrounds from this list.



14
15
16
17
18
# File 'lib/gurke/run_list.rb', line 14

def run(runner, reporter, *args)
  each do |o|
    o.run runner, reporter, *args
  end
end