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/requests/ec2/create_key_pair_spec.rb
2009-08-19 20:32:57 -07:00

36 lines
876 B
Ruby

require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'EC2.create_key_pair' do
describe 'success' do
after(:each) 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['keyFingerprint'].should be_a(String)
actual.body['keyMaterial'].should be_a(String)
actual.body['keyName'].should be_a(String)
actual.body['requestId'].should be_a(String)
end
end
describe 'failure' do
before(:each) do
ec2.create_key_pair('fog_key_pair')
end
after(:each) do
ec2.delete_key_pair('fog_key_pair')
end
it "should raise a BadRequest when the key pair already exists" do
lambda {
ec2.create_key_pair('fog_key_pair')
}.should raise_error(Fog::Errors::BadRequest)
end
end
end