class TestCentricity::DataObject

Attributes

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

Public Class Methods

current() click to toggle source
# File lib/testcentricity/data_objects/data_objects_helper.rb, line 26
def self.current
  @current
end
current=(current) click to toggle source
# File lib/testcentricity/data_objects/data_objects_helper.rb, line 30
def self.current=(current)
  @current = current
end
new(data) click to toggle source
# File lib/testcentricity/data_objects/data_objects_helper.rb, line 16
def initialize(data)
  @hash_table = data
end
set_current(current) click to toggle source

@deprecated Please use {#current=} instead

# File lib/testcentricity/data_objects/data_objects_helper.rb, line 21
def self.set_current(current)
  warn "[DEPRECATION] 'TestCentricity::DataObject.set_current' is deprecated.  Please use 'current=' instead."
  @current = current
end