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

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



37
38
39
40
41
42
43
44
45
46
47
# File 'lib/fog/compute/slicehost.rb', line 37

def initialize(options={})
  unless options.delete(:provider)
    location = caller.first
    warning = "[yellow][WARN] Fog::Slicehost::Compute.new is deprecated, use Fog::Compute.new(:provider => 'Slicehost') instead[/]"
    warning << " [light_black](" << location << ")[/] "
    Formatador.display_line(warning)
  end

  @slicehost_password = options[:slicehost_password]
  reset_data
end

Class Method Details

.dataObject



31
32
33
34
35
# File 'lib/fog/compute/slicehost.rb', line 31

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

Instance Method Details

#reset_dataObject



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

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