class TestCentricity::DataObject

Attributes

context[RW]
current[RW]
hash_table[RW]

Public Class Methods

current() click to toggle source
# File lib/testcentricity_web/data_objects/data_objects_helper.rb, line 27
def self.current
  @current
end
current=(current) click to toggle source
# File lib/testcentricity_web/data_objects/data_objects_helper.rb, line 31
def self.current=(current)
  @current = current
end
new(data) click to toggle source
# File lib/testcentricity_web/data_objects/data_objects_helper.rb, line 23
def initialize(data)
  @hash_table = data
end