Class: Fog::DNS::AWS::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/dns/aws.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



39
40
41
42
43
# File 'lib/fog/dns/aws.rb', line 39

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

Class Method Details

.dataObject



25
26
27
28
29
30
31
32
33
# File 'lib/fog/dns/aws.rb', line 25

def self.data
  @data ||= Hash.new do |hash, region|
    hash[region] = Hash.new do |region_hash, key|
      region_hash[key] = {
        :buckets => {}
      }
    end
  end
end

.resetObject



35
36
37
# File 'lib/fog/dns/aws.rb', line 35

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



45
46
47
# File 'lib/fog/dns/aws.rb', line 45

def data
  self.class.data[@region][@aws_access_key_id]
end

#reset_dataObject



49
50
51
# File 'lib/fog/dns/aws.rb', line 49

def reset_data
  self.class.data[@region].delete(@aws_access_key_id)
end

#signature(params) ⇒ Object



53
54
55
# File 'lib/fog/dns/aws.rb', line 53

def signature(params)
  "foo"
end