Class: Fog::Account::StormOnDemand::Mock
- Inherits:
-
Object
- Object
- Fog::Account::StormOnDemand::Mock
- Defined in:
- lib/fog/storm_on_demand/account.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.
33 34 35 |
# File 'lib/fog/storm_on_demand/account.rb', line 33 def initialize(={}) @storm_on_demand_username = [:storm_on_demand_username] end |
Class Method Details
.data ⇒ Object
19 20 21 |
# File 'lib/fog/storm_on_demand/account.rb', line 19 def self.data @data ||= Hash.new end |
.reset ⇒ Object
23 24 25 |
# File 'lib/fog/storm_on_demand/account.rb', line 23 def self.reset @data = nil end |
.reset_data(keys = data.keys) ⇒ Object
27 28 29 30 31 |
# File 'lib/fog/storm_on_demand/account.rb', line 27 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end |
Instance Method Details
#data ⇒ Object
37 38 39 |
# File 'lib/fog/storm_on_demand/account.rb', line 37 def data self.class.data[@storm_on_demand_username] end |
#reset_data ⇒ Object
41 42 43 |
# File 'lib/fog/storm_on_demand/account.rb', line 41 def reset_data self.class.data.delete(@storm_on_demand_username) end |