mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
28 lines
689 B
Ruby
28 lines
689 B
Ruby
for provider, config in dns_providers
|
|
|
|
# FIXME: delay/timing breaks things :(
|
|
next if [:dnsmadeeasy].include?(provider)
|
|
|
|
Shindo.tests("Fog::DNS[:#{provider}] | record", [provider.to_s]) do
|
|
|
|
record_attributes = {
|
|
:name => 'www.fogrecordtests.com',
|
|
:type => 'A',
|
|
:value => '1.2.3.4'
|
|
}.merge!(config[:record_attributes] || {})
|
|
|
|
if !Fog.mocking? || config[:mocked]
|
|
zone_attributes = {
|
|
:domain => 'fogrecordtests.com'
|
|
}.merge(config[:zone_attributes] || {})
|
|
|
|
@zone = Fog::DNS[provider].zones.create(zone_attributes)
|
|
|
|
model_tests(@zone.records, record_attributes, config[:mocked])
|
|
|
|
@zone.destroy
|
|
end
|
|
|
|
end
|
|
|
|
end
|