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

21 lines
479 B
Ruby
Raw Normal View History

2010-12-29 20:23:40 -05:00
for provider, config in dns_providers
Shindo.tests("#{provider}::DNS | records", [provider.to_s.downcase]) do
2010-12-29 20:23:40 -05:00
params = {
:ip => '1.2.3.4',
:name => 'www.fogrecordstests.com',
:type => 'A'
}.merge!(config[:records_params] || {})
2010-12-29 20:23:40 -05:00
2011-01-03 14:48:55 -05:00
if !Fog.mocking? || config[:mocked]
@zone = provider[:dns].zones.create(:domain => 'fogrecordstests.com')
collection_tests(@zone.records, params, config[:mocked])
@zone.destroy
end
2010-12-29 20:23:40 -05:00
end
end