1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/openstack/models/network/security_groups_tests.rb

16 lines
634 B
Ruby

Shindo.tests('Fog::Network[:openstack] | security_groups collection', ['openstack']) do
attributes = {:name => "my_secgroup", :description => "my sec group desc"}
collection_tests(Fog::Network[:openstack].security_groups, attributes, true)
tests('success') do
attributes = {:name => "fogsecgroup", :description => "fog sec group desc"}
@secgroup = Fog::Network[:openstack].security_groups.create(attributes)
tests('#all(filter)').succeeds do
secgroup = Fog::Network[:openstack].security_groups.all({:name => "fogsecgroup"})
secgroup.first.name == "fogsecgroup"
end
@secgroup.destroy
end
end