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/revoke_security_group_ingress_spec.rb

31 lines
794 B
Ruby
Raw Normal View History

2009-08-17 18:55:30 -04:00
require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'EC2.revoke_security_group_ingress' do
2009-07-19 18:16:26 -04:00
before(:all) do
ec2.create_security_group('fog_security_group', 'a security group for testing fog')
ec2.authorize_security_group_ingress({
2009-08-01 04:15:44 -04:00
'FromPort' => 80,
'GroupName' => 'fog_security_group',
'IpProtocol' => 'tcp',
'ToPort' => 80
2009-07-19 18:16:26 -04:00
})
end
after(:all) do
ec2.delete_security_group('fog_security_group')
2009-07-19 18:16:26 -04:00
end
it "should return proper attributes" do
actual = ec2.revoke_security_group_ingress({
2009-08-01 04:15:44 -04:00
'FromPort' => 80,
'GroupName' => 'fog_security_group',
'IpProtocol' => 'tcp',
'ToPort' => 80
2009-07-19 18:16:26 -04:00
})
2009-08-01 04:15:44 -04:00
actual.body['requestId'].should be_a(String)
[false, true].should include(actual.body['return'])
2009-07-19 18:16:26 -04:00
end
end