Class: Diddy::RunResult::Step

Inherits:
Object
  • Object
show all
Defined in:
lib/diddy/run_result.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(description) ⇒ Step

Returns a new instance of Step.



112
113
114
# File 'lib/diddy/run_result.rb', line 112

def initialize(description)
  self.description = description
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



110
111
112
# File 'lib/diddy/run_result.rb', line 110

def description
  @description
end

#exceptionObject

Returns the value of attribute exception.



110
111
112
# File 'lib/diddy/run_result.rb', line 110

def exception
  @exception
end

#resultObject

Returns the value of attribute result.



110
111
112
# File 'lib/diddy/run_result.rb', line 110

def result
  @result
end

#scenarioObject

Returns the value of attribute scenario.



110
111
112
# File 'lib/diddy/run_result.rb', line 110

def scenario
  @scenario
end

#sub_stepsObject

Returns the value of attribute sub_steps.



110
111
112
# File 'lib/diddy/run_result.rb', line 110

def sub_steps
  @sub_steps
end