Sha256: 52f79cb86cea5da9419e18f992ce31c0fc39feb5d0c785735c7feb2badd9a8ec
Contents?: true
Size: 830 Bytes
Versions: 14
Compression:
Stored size: 830 Bytes
Contents
Shindo.tests("Fog::DNS[:google] | zone model", ["google"]) do # Google requires confirmation of ownership for created domains in some cases. # If you want to run tests in non-mocked mode, set the environment variable to a domain you own. unless Fog.mocking? || ENV["FOG_TEST_GOOGLE_DNS_ZONE"] tests("Needs a verified domain, set $FOG_TEST_GOOGLE_DNS_ZONE").pending end params = { :name => Fog::Mock.random_letters(16), :domain => ENV["FOG_TEST_GOOGLE_DNS_ZONE"] || generate_unique_domain, :description => "Fog test domain" } model_tests(Fog::DNS[:google].zones, params) tests("success") do @zone = Fog::DNS[:google].zones.create(params) tests('#changes').succeeds do @zone.changes end tests('#records').succeeds do @zone.records end @zone.destroy end end
Version data entries
14 entries across 14 versions & 1 rubygems