Class: Hiptest::Nodes::Argument

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(name, value) ⇒ Argument

Returns a new instance of Argument.



165
166
167
168
# File 'lib/hiptest-publisher/nodes.rb', line 165

def initialize(name, value)
  super()
  @children = {:name => name, :value => value}
end