Class: Fog::Storage::Rackspace::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::Rackspace::Mock
- Includes:
- Utils
- Defined in:
- lib/fog/rackspace/storage.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Methods included from Utils
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
63 64 65 66 67 |
# File 'lib/fog/rackspace/storage.rb', line 63 def initialize(={}) require 'mime/types' @rackspace_api_key = [:rackspace_api_key] @rackspace_username = [:rackspace_username] end |
Class Method Details
.data ⇒ Object
53 54 55 56 57 |
# File 'lib/fog/rackspace/storage.rb', line 53 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
59 60 61 |
# File 'lib/fog/rackspace/storage.rb', line 59 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
69 70 71 |
# File 'lib/fog/rackspace/storage.rb', line 69 def data self.class.data[@rackspace_username] end |
#reset_data ⇒ Object
73 74 75 |
# File 'lib/fog/rackspace/storage.rb', line 73 def reset_data self.class.data.delete(@rackspace_username) end |