Class: Hiptest::Nodes::Dataset

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, arguments = []) ⇒ Dataset

Returns a new instance of Dataset.



274
275
276
277
278
279
280
281
# File 'lib/hiptest-publisher/nodes.rb', line 274

def initialize(name, arguments = [])
  super()

  @children = {
    :name => name,
    :arguments => arguments
  }
end