Class: Fog::Compute::Bluebox::Mock

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



45
46
47
# File 'lib/fog/bluebox/compute.rb', line 45

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

Class Method Details

.dataObject



35
36
37
38
39
# File 'lib/fog/bluebox/compute.rb', line 35

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

.resetObject



41
42
43
# File 'lib/fog/bluebox/compute.rb', line 41

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



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

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

#reset_dataObject



53
54
55
# File 'lib/fog/bluebox/compute.rb', line 53

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