1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/google/requests/compute/zone_tests.rb
2013-01-16 17:55:36 -08:00

36 lines
773 B
Ruby

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,
'maintenanceWindows' => []
}
@list_zones_format = {
'kind' => String,
'id' => String,
'selfLink' => String,
'items' => []
}
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