2011-06-16 19:28:54 -04:00
|
|
|
Shindo.tests('Fog::Compute[:aws] | region requests', ['aws']) do
|
2010-05-23 17:35:31 -04:00
|
|
|
|
2010-05-26 18:22:23 -04:00
|
|
|
@regions_format = {
|
|
|
|
'regionInfo' => [{
|
|
|
|
'regionEndpoint' => String,
|
|
|
|
'regionName' => String
|
|
|
|
}],
|
|
|
|
'requestId' => String
|
|
|
|
}
|
|
|
|
|
2010-05-23 17:25:20 -04:00
|
|
|
tests('success') do
|
|
|
|
|
2010-05-26 18:22:23 -04:00
|
|
|
tests("#describe_regions").formats(@regions_format) do
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute[:aws].describe_regions.body
|
2010-05-23 17:25:20 -04:00
|
|
|
end
|
|
|
|
|
2010-10-04 18:46:12 -04:00
|
|
|
tests("#describe_regions('region-name' => 'us-east-1')").formats(@regions_format) do
|
2011-06-16 19:28:54 -04:00
|
|
|
Fog::Compute[:aws].describe_regions('region-name' => 'us-east-1').body
|
2010-05-23 17:25:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2010-05-23 17:35:31 -04:00
|
|
|
|
2010-05-23 17:25:20 -04:00
|
|
|
end
|