Class: Fog::Compute::StormOnDemand::Mock
- Inherits:
-
Object
- Object
- Fog::Compute::StormOnDemand::Mock
- Defined in:
- lib/fog/storm_on_demand/compute.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
90 91 92 |
# File 'lib/fog/storm_on_demand/compute.rb', line 90 def initialize(={}) @storm_on_demand_username = [:storm_on_demand_username] end |
Class Method Details
.data ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/fog/storm_on_demand/compute.rb', line 67 def self.data @data ||= Hash.new do |hash, key| hash[key] = { :last_modified => { :images => {}, :servers => {} }, :images => {}, :servers => {} } end end |
.reset ⇒ Object
80 81 82 |
# File 'lib/fog/storm_on_demand/compute.rb', line 80 def self.reset @data = nil end |
.reset_data(keys = data.keys) ⇒ Object
84 85 86 87 88 |
# File 'lib/fog/storm_on_demand/compute.rb', line 84 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end |
Instance Method Details
#data ⇒ Object
94 95 96 |
# File 'lib/fog/storm_on_demand/compute.rb', line 94 def data self.class.data[@storm_on_demand_username] end |
#reset_data ⇒ Object
98 99 100 |
# File 'lib/fog/storm_on_demand/compute.rb', line 98 def reset_data self.class.data.delete(@storm_on_demand_username) end |