Class: Fog::Compute::Slicehost::Mock

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



43
44
45
# File 'lib/fog/slicehost/compute.rb', line 43

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

Class Method Details

.dataObject



33
34
35
36
37
# File 'lib/fog/slicehost/compute.rb', line 33

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

.resetObject



39
40
41
# File 'lib/fog/slicehost/compute.rb', line 39

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



47
48
49
# File 'lib/fog/slicehost/compute.rb', line 47

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

#reset_dataObject



51
52
53
# File 'lib/fog/slicehost/compute.rb', line 51

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