Class: Fog::DNS::AWS::Mock
- Inherits:
-
Object
- Object
- Fog::DNS::AWS::Mock
- Defined in:
- lib/fog/dns/aws.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
- #signature(params) ⇒ Object
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(={}) require 'mime/types' @aws_access_key_id = [:aws_access_key_id] @region = [:region] end |
Class Method Details
.data ⇒ Object
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 |
.reset ⇒ Object
35 36 37 |
# File 'lib/fog/dns/aws.rb', line 35 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
45 46 47 |
# File 'lib/fog/dns/aws.rb', line 45 def data self.class.data[@region][@aws_access_key_id] end |
#reset_data ⇒ Object
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 |