Class: Fog::Linode::Compute::Mock

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

Overview

request :linode_resize request :linode_shutdown request :linode_update

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/fog/compute/linode.rb', line 34

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

  @linode_api_key = options[:linode_api_key]
  reset_data
end

Class Method Details

.dataObject



28
29
30
31
32
# File 'lib/fog/compute/linode.rb', line 28

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

Instance Method Details

#reset_dataObject



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

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