Class: Fog::Storage::Rackspace::Mock

Inherits:
Object
  • Object
show all
Includes:
Utils
Defined in:
lib/rackspace-fog/rackspace/storage.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utils

#cdn

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



60
61
62
63
64
# File 'lib/rackspace-fog/rackspace/storage.rb', line 60

def initialize(options={})
  require 'mime/types'
  @rackspace_api_key = options[:rackspace_api_key]
  @rackspace_username = options[:rackspace_username]
end

Class Method Details

.dataObject



50
51
52
53
54
# File 'lib/rackspace-fog/rackspace/storage.rb', line 50

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {}
  end
end

.resetObject



56
57
58
# File 'lib/rackspace-fog/rackspace/storage.rb', line 56

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



66
67
68
# File 'lib/rackspace-fog/rackspace/storage.rb', line 66

def data
  self.class.data[@rackspace_username]
end

#reset_dataObject



70
71
72
# File 'lib/rackspace-fog/rackspace/storage.rb', line 70

def reset_data
  self.class.data.delete(@rackspace_username)
end