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