Class: Fog::StormOnDemand::Compute::Mock

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



65
66
67
68
# File 'lib/fog/compute/storm_on_demand.rb', line 65

def initialize(options={})
  @storm_on_demand_username = options[:storm_on_demand_username]
  @data = self.class.data[@storm_on_demand_username]
end

Class Method Details

.dataObject



46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/fog/compute/storm_on_demand.rb', line 46

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {
      :last_modified => {
        :images  => {},
        :servers => {}
      },
      :images  => {},
      :servers => {}
    }
  end
end

.reset_data(keys = data.keys) ⇒ Object



59
60
61
62
63
# File 'lib/fog/compute/storm_on_demand.rb', line 59

def self.reset_data(keys=data.keys)
  for key in [*keys]
    data.delete(key)
  end
end