Class: Fog::Storage::StormOnDemand::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::StormOnDemand::Mock
- Defined in:
- lib/fog/storm_on_demand/storage.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.
48 49 50 |
# File 'lib/fog/storm_on_demand/storage.rb', line 48 def initialize(={}) @storm_on_demand_username = [:storm_on_demand_username] end |
Class Method Details
.data ⇒ Object
34 35 36 |
# File 'lib/fog/storm_on_demand/storage.rb', line 34 def self.data @data ||= Hash.new end |
.reset ⇒ Object
38 39 40 |
# File 'lib/fog/storm_on_demand/storage.rb', line 38 def self.reset @data = nil end |
.reset_data(keys = data.keys) ⇒ Object
42 43 44 45 46 |
# File 'lib/fog/storm_on_demand/storage.rb', line 42 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end |
Instance Method Details
#data ⇒ Object
52 53 54 |
# File 'lib/fog/storm_on_demand/storage.rb', line 52 def data self.class.data[@storm_on_demand_username] end |
#reset_data ⇒ Object
56 57 58 |
# File 'lib/fog/storm_on_demand/storage.rb', line 56 def reset_data self.class.data.delete(@storm_on_demand_username) end |