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_security_group_spec.rb
2009-08-17 15:25:19 -07:00

25 lines
725 B
Ruby

require File.dirname(__FILE__) + '/../../spec_helper'
describe 'EC2.create_security_group' do
before(:all) do
@ec2 = Fog::AWS::EC2.gen
end
after(:all) do
@ec2.delete_security_group('fog_security_group')
end
it "should return proper attributes" do
actual = @ec2.create_security_group('fog_security_group', 'a security group for testing fog')
actual.body['requestId'].should be_a(String)
[false, true].should include(actual.body['return'])
end
it "should raise a BadRequest error when the security group already exists" do
lambda {
@ec2.create_security_group('fog_security_group', 'a security group for testing fog')
}.should raise_error(Fog::Errors::BadRequest)
end
end