Class: Hiptest::Nodes::Library

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

#==, #each_direct_children, #each_sub_nodes, #flat_string, #kind, #pretty_print_instance_variables, #project, #render

Constructor Details

#initialize(name = 'default_library', library_actionwords = []) ⇒ Library

Returns a new instance of Library.



560
561
562
563
564
565
566
# File 'lib/hiptest-publisher/nodes.rb', line 560

def initialize(name = 'default_library', library_actionwords = [])
  super()
  @children = {
    name: name,
    library_actionwords: library_actionwords
  }
end