Sha256: 890385d48ddf7ce049d2fabf5732639ab21e8eaaf9066d0125ab2adf8127453d
Contents?: true
Size: 1.57 KB
Versions: 16
Compression:
Stored size: 1.57 KB
Contents
require File.dirname(__FILE__) + '/../../../spec_helper' describe 'EC2.describe_images' do describe 'success' do it "should return proper attributes with no params" do actual = ec2.describe_images actual.body['requestId'].should be_a(String) image = actual.body['imagesSet'].first image['architecture'].should be_a(String) image['imageId'].should be_a(String) image['imageLocation'].should be_a(String) image['imageOwnerId'].should be_a(String) image['imageState'].should be_a(String) image['imageType'].should be_a(String) [false, true].should include(image['isPublic']) image['kernelId'].should be_a(String) if image['kernelId'] image['platform'].should be_a(String) if image['platform'] image['ramdiskId'].should be_a(String) if image['ramdiskId'] end it "should return proper attributes with params" do actual = ec2.describe_images('ImageId' => GENTOO_AMI) actual.body['requestId'].should be_a(String) image = actual.body['imagesSet'].first image['architecture'].should be_a(String) image['imageId'].should be_a(String) image['imageLocation'].should be_a(String) image['imageOwnerId'].should be_a(String) image['imageState'].should be_a(String) image['imageType'].should be_a(String) [false, true].should include(image['isPublic']) image['kernelId'].should be_a(String) if image['kernelId'] image['platform'].should be_a(String) if image['platform'] image['ramdiskId'].should be_a(String) if image['ramdiskId'] end end end
Version data entries
16 entries across 16 versions & 1 rubygems