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