1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/aws/ec2/describe_availability_zones_spec.rb
2009-07-13 09:58:08 -07:00

15 lines
451 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 attributes for specific ip"
end