Class: Fog::Storage::OpenStack::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::OpenStack::Mock
- Defined in:
- lib/fog/openstack/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.
47 48 49 50 51 |
# File 'lib/fog/openstack/storage.rb', line 47 def initialize(={}) require 'mime/types' @openstack_api_key = [:openstack_api_key] @openstack_username = [:openstack_username] end |
Class Method Details
.data ⇒ Object
37 38 39 40 41 |
# File 'lib/fog/openstack/storage.rb', line 37 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
43 44 45 |
# File 'lib/fog/openstack/storage.rb', line 43 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
53 54 55 |
# File 'lib/fog/openstack/storage.rb', line 53 def data self.class.data[@openstack_username] end |
#reset_data ⇒ Object
57 58 59 |
# File 'lib/fog/openstack/storage.rb', line 57 def reset_data self.class.data.delete(@openstack_username) end |