Class: Fog::DNS::DNSMadeEasy::Mock
- Inherits:
-
Object
- Object
- Fog::DNS::DNSMadeEasy::Mock
- Defined in:
- lib/fog/dns/dnsmadeeasy.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
45 46 47 48 |
# File 'lib/fog/dns/dnsmadeeasy.rb', line 45 def initialize(={}) @dnsmadeeasy_api_key = [:dnsmadeeasy_api_key] @dnsmadeeasy_secret_key = [:dnsmadeeasy_secret_key] end |
Class Method Details
.data ⇒ Object
35 36 37 38 39 |
# File 'lib/fog/dns/dnsmadeeasy.rb', line 35 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
41 42 43 |
# File 'lib/fog/dns/dnsmadeeasy.rb', line 41 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
50 51 52 |
# File 'lib/fog/dns/dnsmadeeasy.rb', line 50 def data self.class.data[@dnsmadeeasy_api_key] end |
#reset_data ⇒ Object
54 55 56 |
# File 'lib/fog/dns/dnsmadeeasy.rb', line 54 def reset_data self.class.data.delete(@dnsmadeeasy_api_key) end |