Class: Fog::Network::StormOnDemand::Mock
- Inherits:
-
Object
- Object
- Fog::Network::StormOnDemand::Mock
- Defined in:
- lib/fog/storm_on_demand/network.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.
92 93 94 |
# File 'lib/fog/storm_on_demand/network.rb', line 92 def initialize(={}) @storm_on_demand_username = [:storm_on_demand_username] end |
Class Method Details
.data ⇒ Object
78 79 80 |
# File 'lib/fog/storm_on_demand/network.rb', line 78 def self.data @data ||= Hash.new end |
.reset ⇒ Object
82 83 84 |
# File 'lib/fog/storm_on_demand/network.rb', line 82 def self.reset @data = nil end |
.reset_data(keys = data.keys) ⇒ Object
86 87 88 89 90 |
# File 'lib/fog/storm_on_demand/network.rb', line 86 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end |
Instance Method Details
#data ⇒ Object
96 97 98 |
# File 'lib/fog/storm_on_demand/network.rb', line 96 def data self.class.data[@storm_on_demand_username] end |
#reset_data ⇒ Object
100 101 102 |
# File 'lib/fog/storm_on_demand/network.rb', line 100 def reset_data self.class.data.delete(@storm_on_demand_username) end |