Class: Fog::DNS::Slicehost::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/dns/slicehost.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



36
37
38
# File 'lib/fog/dns/slicehost.rb', line 36

def initialize(options={})
  @slicehost_password = options[:slicehost_password]
end

Class Method Details

.dataObject



26
27
28
29
30
# File 'lib/fog/dns/slicehost.rb', line 26

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {}
  end
end

.resetObject



32
33
34
# File 'lib/fog/dns/slicehost.rb', line 32

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



40
41
42
# File 'lib/fog/dns/slicehost.rb', line 40

def data
  self.class.data[@slicehost_password]
end

#reset_dataObject



44
45
46
# File 'lib/fog/dns/slicehost.rb', line 44

def reset_data
  self.class.data.delete(@slicehost_password)
end