mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
696 B
Ruby
21 lines
696 B
Ruby
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
describe 'EC2.describe_availability_zones' do
|
|
|
|
it "should return proper attributes with no params" do
|
|
actual = ec2.describe_availability_zones
|
|
zone = actual.body[:availability_zone_info].first
|
|
zone[:region_name].should be_a(String)
|
|
zone[:zone_name].should be_a(String)
|
|
zone[:zone_state].should be_a(String)
|
|
end
|
|
|
|
it "should return proper attribute with params" do
|
|
actual = ec2.describe_availability_zones(['us-east-1a'])
|
|
zone = actual.body[:availability_zone_info].first
|
|
zone[:region_name].should be_a(String)
|
|
zone[:zone_name].should be_a(String)
|
|
zone[:zone_state].should be_a(String)
|
|
end
|
|
|
|
end
|