Class: Fog::DNS::DNSimple::Mock
- Inherits:
-
Object
- Object
- Fog::DNS::DNSimple::Mock
- Defined in:
- lib/fog/dnsimple/dns.rb
Class Method Summary (collapse)
Instance Method Summary (collapse)
- - (Object) data
-
- (Mock) initialize(options = {})
constructor
A new instance of Mock.
- - (Object) reset_data
Constructor Details
- (Mock) initialize(options = {})
A new instance of Mock
40 41 42 43 |
# File 'lib/fog/dnsimple/dns.rb', line 40 def initialize(={}) @dnsimple_email = [:dnsimple_email] @dnsimple_password = [:dnsimple_password] end |
Class Method Details
+ (Object) data
30 31 32 33 34 |
# File 'lib/fog/dnsimple/dns.rb', line 30 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
+ (Object) reset
36 37 38 |
# File 'lib/fog/dnsimple/dns.rb', line 36 def self.reset @data = nil end |
Instance Method Details
- (Object) data
45 46 47 |
# File 'lib/fog/dnsimple/dns.rb', line 45 def data self.class.data[@dnsimple_email] end |
- (Object) reset_data
49 50 51 |
# File 'lib/fog/dnsimple/dns.rb', line 49 def reset_data self.class.data.delete(@dnsimple_email) end |