2009-08-17 18:55:30 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-07-05 15:43:35 -04:00
|
|
|
|
|
|
|
describe 'EC2.delete_security_group' do
|
|
|
|
|
|
|
|
before(:all) do
|
2009-08-18 01:39:44 -04:00
|
|
|
ec2.create_security_group('fog_security_group', 'a security group for testing fog')
|
2009-07-05 15:43:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should return proper attributes" do
|
2009-08-18 01:39:44 -04:00
|
|
|
actual = ec2.delete_security_group('fog_security_group')
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['requestId'].should be_a(String)
|
|
|
|
[false, true].should include(actual.body['return'])
|
2009-07-05 15:43:35 -04:00
|
|
|
end
|
|
|
|
|
2009-08-17 12:45:00 -04:00
|
|
|
it "should raise a BadRequest error if the security group does not exist" do
|
|
|
|
lambda {
|
2009-08-18 01:39:44 -04:00
|
|
|
ec2.delete_security_group('fog_not_a_security_group')
|
2009-08-17 12:45:00 -04:00
|
|
|
}.should raise_error(Fog::Errors::BadRequest)
|
|
|
|
end
|
|
|
|
|
2009-07-05 15:43:35 -04:00
|
|
|
end
|