Class: Fog::Storage::Rackspace::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::Rackspace::Mock
- Includes:
- Utils
- Defined in:
- lib/fog/storage/rackspace.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.
56 57 58 59 60 |
# File 'lib/fog/storage/rackspace.rb', line 56 def initialize(={}) require 'mime/types' @rackspace_api_key = [:rackspace_api_key] @rackspace_username = [:rackspace_username] end |
Class Method Details
.data ⇒ Object
46 47 48 49 50 |
# File 'lib/fog/storage/rackspace.rb', line 46 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
52 53 54 |
# File 'lib/fog/storage/rackspace.rb', line 52 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
62 63 64 |
# File 'lib/fog/storage/rackspace.rb', line 62 def data self.class.data[@rackspace_username] end |
#reset_data ⇒ Object
66 67 68 |
# File 'lib/fog/storage/rackspace.rb', line 66 def reset_data self.class.data.delete(@rackspace_username) end |