mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
16 lines
No EOL
382 B
Ruby
16 lines
No EOL
382 B
Ruby
for provider, config in dns_providers
|
|
|
|
# FIXME: delay/timing breaks things :(
|
|
next if [:dnsmadeeasy].include?(provider)
|
|
|
|
Shindo.tests("Fog::DNS[:#{provider}] | zone", [provider]) do
|
|
|
|
zone_attributes = {
|
|
:domain => 'fogzonetests.com'
|
|
}.merge!(config[:zone_attributes] || {})
|
|
|
|
model_tests(Fog::DNS[provider].zones, zone_attributes, config[:mocked])
|
|
|
|
end
|
|
|
|
end |