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