Sha256: f1a4b8276fc63807a48cddaf01769af9612c659cb96d9ad1899c55c239f21f40
Contents?: true
Size: 833 Bytes
Versions: 32
Compression:
Stored size: 833 Bytes
Contents
Shindo.tests('Fog::Compute[:google] | zone requests', ['google']) do @google = Fog::Compute[:google] @get_zone_format = { 'kind' => String, 'id' => String, 'selfLink' => String, 'creationTimestamp' => String, 'name' => String, 'description' => String, 'status' => String, 'region' => String, 'maintenanceWindows' => Fog::Nullable::Array } @list_zones_format = { 'kind' => String, 'id' => String, 'selfLink' => String, 'items' => [@get_zone_format] } tests('success') do tests("#get_zone").formats(@get_zone_format) do zone_name = @google.list_zones.body["items"][0]["name"] @google.get_zone(zone_name).body end tests("#list_zones").formats(@list_zones_format) do @google.list_zones.body end end end
Version data entries
32 entries across 30 versions & 6 rubygems