Sha256: a5139cc6991b142c01bad9b98d38c1b7bbb053229edb7bbca76c7848fdf51d52
Contents?: true
Size: 755 Bytes
Versions: 38
Compression:
Stored size: 755 Bytes
Contents
require File.dirname(__FILE__) + '/../../../spec_helper' describe 'EC2.describe_availability_zones' do describe 'success' do it "should return proper attributes with no params" do actual = ec2.describe_availability_zones zone = actual.body['availabilityZoneInfo'].first zone['regionName'].should be_a(String) zone['zoneName'].should be_a(String) zone['zoneState'].should be_a(String) end it "should return proper attribute with params" do actual = ec2.describe_availability_zones(['us-east-1a']) zone = actual.body['availabilityZoneInfo'].first zone['regionName'].should be_a(String) zone['zoneName'].should be_a(String) zone['zoneState'].should be_a(String) end end end
Version data entries
38 entries across 38 versions & 1 rubygems