class Fog::DNS::Slicehost::Mock

Public Class Methods

data() click to toggle source
# File lib/fog/slicehost/dns.rb, line 30
def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {}
  end
end
new(options={}) click to toggle source
# File lib/fog/slicehost/dns.rb, line 40
def initialize(options={})
  @slicehost_password = options[:slicehost_password]
end
reset() click to toggle source
# File lib/fog/slicehost/dns.rb, line 36
def self.reset
  @data = nil
end

Public Instance Methods

data() click to toggle source
# File lib/fog/slicehost/dns.rb, line 44
def data
  self.class.data[@slicehost_password]
end
reset_data() click to toggle source
# File lib/fog/slicehost/dns.rb, line 48
def reset_data
  self.class.data.delete(@slicehost_password)
end