class Urist::Base

Attributes

runner[RW]

Public Class Methods

new(options={}) click to toggle source
# File lib/urist/base.rb, line 5
def initialize options={}
  @runner = Runner.new options
end

Public Instance Methods

go!() click to toggle source

starts script execution

# File lib/urist/base.rb, line 10
def go!
  @runner.go!
end
logs() click to toggle source

returns all results from all performed scenarios

# File lib/urist/base.rb, line 20
def logs
  @runner.log
end
scenarios() click to toggle source

returns all performed scenarios

# File lib/urist/base.rb, line 15
def scenarios
  @runner.done_scenarios
end