mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
18 lines
457 B
Ruby
18 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
|