Class: Hiptest::Nodes::IfThen

Inherits:
Node
  • Object
show all
Defined in:
lib/hiptest-publisher/nodes.rb

Instance Attribute Summary

Attributes inherited from Node

#children, #parent

Instance Method Summary collapse

Methods inherited from Node

#direct_children, #find_sub_nodes, #render

Constructor Details

#initialize(condition, then_, else_ = []) ⇒ IfThen

Returns a new instance of IfThen.



179
180
181
182
# File 'lib/hiptest-publisher/nodes.rb', line 179

def initialize(condition, then_, else_ = [])
  super()
  @children = {:condition => condition, :then => then_, :else => else_}
end