class Hiptest::Nodes::Test

Public Class Methods

new(name, description = '', tags = [], body = []) click to toggle source
Calls superclass method
# File lib/hiptest-publisher/nodes.rb, line 384
def initialize(name, description = '', tags = [], body = [])
  super()

  @children = {
    name: name,
    description: description,
    tags: tags,
    body: body
  }
end

Public Instance Methods

folder() click to toggle source
# File lib/hiptest-publisher/nodes.rb, line 395
def folder
  nil
end