1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

passing zone tests.

This commit is contained in:
Nat Welch 2013-04-29 14:37:41 -07:00
parent 487328bf16
commit 1055bfeb06

View file

@ -10,14 +10,24 @@ Shindo.tests('Fog::Compute[:google] | zone requests', ['google']) do
'name' => String,
'description' => String,
'status' => String,
'maintenanceWindows' => []
'maintenanceWindows' => [{
'name' => String,
'description' => String,
'beginTime' => String,
'endTime' => String,
}],
'quotas' => [{
'metric' => String,
'limit' => Float,
'usage' => Float},
],
}
@list_zones_format = {
'kind' => String,
'id' => String,
'selfLink' => String,
'items' => []
'items' => [@get_zone_format]
}
tests('success') do