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_images_spec.rb

22 lines
680 B
Ruby

require File.dirname(__FILE__) + '/../../spec_helper'
describe 'EC2.describe_images' do
it "should return proper attributes with no params" do
pending
actual = ec2.describe_images
actual.body[:request_id].should be_a(String)
image = actual.body[:image_set].first
image[:architecture].should be_a(String)
image[:image_id].should be_a(String)
image[:image_location].should be_a(String)
image[:image_owner_id].should be_a(String)
image[:image_state].should be_a(String)
image[:image_type].should be_a(String)
[false, true].should include(image[:is_public])
p actual
end
it "should return proper attributes with params"
end