Class: Fog::Compute::StormOnDemand::Mock
- Inherits:
-
Object
- Object
- Fog::Compute::StormOnDemand::Mock
- Defined in:
- lib/fog/compute/storm_on_demand.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.
68 69 70 |
# File 'lib/fog/compute/storm_on_demand.rb', line 68 def initialize(={}) @storm_on_demand_username = [:storm_on_demand_username] end |
Class Method Details
.data ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/fog/compute/storm_on_demand.rb', line 45 def self.data @data ||= Hash.new do |hash, key| hash[key] = { :last_modified => { :images => {}, :servers => {} }, :images => {}, :servers => {} } end end |
.reset ⇒ Object
58 59 60 |
# File 'lib/fog/compute/storm_on_demand.rb', line 58 def self.reset @data = nil end |
.reset_data(keys = data.keys) ⇒ Object
62 63 64 65 66 |
# File 'lib/fog/compute/storm_on_demand.rb', line 62 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end |
Instance Method Details
#data ⇒ Object
72 73 74 |
# File 'lib/fog/compute/storm_on_demand.rb', line 72 def data self.class.data[@storm_on_demand_username] end |
#reset_data ⇒ Object
76 77 78 |
# File 'lib/fog/compute/storm_on_demand.rb', line 76 def reset_data self.class.data.delete(@storm_on_demand_username) end |