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