Class: Fog::DNS::Linode::Mock
- Inherits:
-
Object
- Object
- Fog::DNS::Linode::Mock
- Defined in:
- lib/fog/linode/dns.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.
39 40 41 |
# File 'lib/fog/linode/dns.rb', line 39 def initialize(={}) @linode_api_key = [:linode_api_key] end |
Class Method Details
.data ⇒ Object
29 30 31 32 33 |
# File 'lib/fog/linode/dns.rb', line 29 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
35 36 37 |
# File 'lib/fog/linode/dns.rb', line 35 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
43 44 45 |
# File 'lib/fog/linode/dns.rb', line 43 def data self.class.data[@linode_api_key] end |
#reset_data ⇒ Object
47 48 49 |
# File 'lib/fog/linode/dns.rb', line 47 def reset_data self.class.data.delete(@linode_api_key) end |