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.
52 53 54 55 56 |
# File 'lib/fog/storage/rackspace.rb', line 52 def initialize(={}) require 'mime/types' @rackspace_api_key = [:rackspace_api_key] @rackspace_username = [:rackspace_username] end |
Class Method Details
.data ⇒ Object
42 43 44 45 46 |
# File 'lib/fog/storage/rackspace.rb', line 42 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
48 49 50 |
# File 'lib/fog/storage/rackspace.rb', line 48 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
58 59 60 |
# File 'lib/fog/storage/rackspace.rb', line 58 def data self.class.data[@rackspace_username] end |
#reset_data ⇒ Object
62 63 64 |
# File 'lib/fog/storage/rackspace.rb', line 62 def reset_data self.class.data.delete(@rackspace_username) end |