Class: Fog::DNS::Rackspace::Mock
Class Method Summary
collapse
Instance Method Summary
collapse
#authenticate, #endpoint_uri, #region, #request, #request_without_retry, #service_name, #service_net?
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
55
56
57
58
59
60
|
# File 'lib/fog/rackspace/dns.rb', line 55
def initialize(options={})
@rackspace_api_key = options[:rackspace_api_key]
@rackspace_username = options[:rackspace_username]
@rackspace_auth_url = options[:rackspace_auth_url]
@connection_options = options[:connection_options] || {}
end
|
Class Method Details
.data ⇒ Object
62
63
64
65
|
# File 'lib/fog/rackspace/dns.rb', line 62
def self.data
@data ||= {
}
end
|
.reset ⇒ Object
67
68
69
|
# File 'lib/fog/rackspace/dns.rb', line 67
def self.reset
@data = nil
end
|
Instance Method Details
#data ⇒ Object
71
72
73
|
# File 'lib/fog/rackspace/dns.rb', line 71
def data
self.class.data
end
|
#reset_data ⇒ Object
75
76
77
|
# File 'lib/fog/rackspace/dns.rb', line 75
def reset_data
self.class.reset
end
|