Sha256: f2b43e4f9c30cba9e02093591e6f412ff5a5e371bf88b439bb427ac6e92c50aa
Contents?: true
Size: 636 Bytes
Versions: 38
Compression:
Stored size: 636 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_regions zone = actual.body['regionInfo'].first zone['regionEndpoint'].should be_a(String) zone['regionName'].should be_a(String) end it "should return proper attribute with params" do actual = ec2.describe_regions(['us-east-1']) zone = actual.body['regionInfo'].first zone['regionEndpoint'].should be_a(String) zone['regionName'].should be_a(String) end end end
Version data entries
38 entries across 38 versions & 1 rubygems