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.
50 51 52 53 54 |
# File 'lib/fog/openstack/storage.rb', line 50 def initialize(={}) @openstack_api_key = [:openstack_api_key] @openstack_username = [:openstack_username] @path = '/v1/AUTH_1234' end |
Class Method Details
.data ⇒ Object
40 41 42 43 44 |
# File 'lib/fog/openstack/storage.rb', line 40 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
46 47 48 |
# File 'lib/fog/openstack/storage.rb', line 46 def self.reset @data = nil end |
Instance Method Details
#change_account(account) ⇒ Object
64 65 66 67 68 |
# File 'lib/fog/openstack/storage.rb', line 64 def change_account(account) @original_path ||= @path version_string = @original_path.split('/')[1] @path = "/#{version_string}/#{account}" end |
#data ⇒ Object
56 57 58 |
# File 'lib/fog/openstack/storage.rb', line 56 def data self.class.data[@openstack_username] end |
#reset_account_name ⇒ Object
70 71 72 |
# File 'lib/fog/openstack/storage.rb', line 70 def reset_account_name @path = @original_path end |
#reset_data ⇒ Object
60 61 62 |
# File 'lib/fog/openstack/storage.rb', line 60 def reset_data self.class.data.delete(@openstack_username) end |