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

15 lines
359 B
Ruby
Raw Normal View History

2009-07-06 11:59:50 -04:00
require File.dirname(__FILE__) + '/../../spec_helper'
describe 'EC2.describe_key_pairs' do
it "should return proper attributes with no params" do
actual = ec2.describe_key_pairs
2009-07-16 02:24:32 -04:00
actual.body[:key_set].should be_an(Array)
actual.body[:request_id].should be_a(String)
2009-07-06 11:59:50 -04:00
p actual
end
it "should return proper attributes with params"
end