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/create_key_pair_spec.rb
2009-07-06 09:21:21 -07:00

17 lines
457 B
Ruby

require File.dirname(__FILE__) + '/../../spec_helper'
describe 'EC2.create_key_pair' do
after(:all) do
ec2.delete_key_pair('fog_key_pair')
end
it "should return proper attributes" do
actual = ec2.create_key_pair('fog_key_pair')
actual.body[:key_fingerprint].should be_a(String)
actual.body[:key_material].should be_a(String)
actual.body[:key_name].should be_a(String)
actual.body[:request_id].should be_a(String)
end
end