2009-08-17 15:55:30 -07:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-07-06 09:21:21 -07:00
|
|
|
|
|
|
|
describe 'EC2.delete_key_pair' do
|
2009-08-19 19:11:57 -07:00
|
|
|
describe 'success' do
|
2009-07-06 09:21:21 -07:00
|
|
|
|
2009-08-19 20:32:57 -07:00
|
|
|
before(:each) do
|
2010-01-23 12:35:16 -08:00
|
|
|
AWS[:ec2].create_key_pair('fog_key_name')
|
|
|
|
@response = AWS[:ec2].delete_key_pair('fog_key_name')
|
2009-08-19 19:11:57 -07:00
|
|
|
end
|
2009-07-06 09:21:21 -07:00
|
|
|
|
2009-08-19 19:11:57 -07:00
|
|
|
it "should return proper attributes" do
|
2009-08-19 20:32:57 -07:00
|
|
|
@response.body['requestId'].should be_a(String)
|
|
|
|
[false, true].should include(@response.body['return'])
|
2009-08-19 19:11:57 -07:00
|
|
|
end
|
2009-07-06 09:21:21 -07:00
|
|
|
|
2009-08-19 19:11:57 -07:00
|
|
|
it "should not raise an error if the key pair does not exist" do
|
2010-01-23 12:35:16 -08:00
|
|
|
AWS[:ec2].delete_key_pair('not_a_key_name')
|
2009-08-19 19:11:57 -07:00
|
|
|
end
|
2009-08-16 22:19:35 -07:00
|
|
|
|
2009-08-19 19:11:57 -07:00
|
|
|
end
|
2009-07-06 09:21:21 -07:00
|
|
|
end
|