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
- #change_account(account) ⇒ Object
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_account_name ⇒ Object
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
51 52 53 54 55 |
# File 'lib/fog/openstack/storage.rb', line 51 def initialize(={}) @openstack_api_key = [:openstack_api_key] @openstack_username = [:openstack_username] @path = '/v1/AUTH_1234' end |
Class Method Details
.data ⇒ Object
41 42 43 44 45 |
# File 'lib/fog/openstack/storage.rb', line 41 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
47 48 49 |
# File 'lib/fog/openstack/storage.rb', line 47 def self.reset @data = nil end |
Instance Method Details
#change_account(account) ⇒ Object
65 66 67 68 69 |
# File 'lib/fog/openstack/storage.rb', line 65 def change_account(account) @original_path ||= @path version_string = @original_path.split('/')[1] @path = "/#{version_string}/#{account}" end |
#data ⇒ Object
57 58 59 |
# File 'lib/fog/openstack/storage.rb', line 57 def data self.class.data[@openstack_username] end |
#reset_account_name ⇒ Object
71 72 73 |
# File 'lib/fog/openstack/storage.rb', line 71 def reset_account_name @path = @original_path end |
#reset_data ⇒ Object
61 62 63 |
# File 'lib/fog/openstack/storage.rb', line 61 def reset_data self.class.data.delete(@openstack_username) end |