Class: Fog::DNS::DNSMadeEasy::Mock

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



46
47
48
49
# File 'lib/fog/dnsmadeeasy/dns.rb', line 46

def initialize(options={})
  @dnsmadeeasy_api_key = options[:dnsmadeeasy_api_key]
  @dnsmadeeasy_secret_key = options[:dnsmadeeasy_secret_key]
end

Class Method Details

.dataObject



36
37
38
39
40
# File 'lib/fog/dnsmadeeasy/dns.rb', line 36

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

.resetObject



42
43
44
# File 'lib/fog/dnsmadeeasy/dns.rb', line 42

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



51
52
53
# File 'lib/fog/dnsmadeeasy/dns.rb', line 51

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

#reset_dataObject



55
56
57
# File 'lib/fog/dnsmadeeasy/dns.rb', line 55

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