1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/dns/models/records_tests.rb
2011-05-27 10:30:34 -07:00

25 lines
No EOL
609 B
Ruby

for provider, config in dns_providers
Shindo.tests("#{provider}::DNS | records", [provider.to_s.downcase]) do
record_attributes = {
:name => 'www.fogrecordstests.com',
:type => 'A',
:value => '1.2.3.4'
}.merge!(config[:record_attributes] || {})
if !Fog.mocking? || config[:mocked]
zone_attributes = {
:domain => 'fogrecordstests.com'
}.merge(config[:zone_attributes] || {})
@zone = provider[:dns].zones.create(zone_attributes)
collection_tests(@zone.records, record_attributes, config[:mocked])
@zone.destroy
end
end
end