mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
722b33cdad
* add volume tests back into tests/cloudstack/models/ * represent rules as a resource * fix job representations
19 lines
499 B
Ruby
19 lines
499 B
Ruby
def security_group_tests(provider, params, mocks_implemented = true)
|
|
collection_tests(provider.security_groups, params, mocks_implemented) do
|
|
|
|
if Fog.mocking? && !mocks_implemented
|
|
pending
|
|
else
|
|
responds_to(:rules)
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
|
|
provider, config = :cloudstack, compute_providers[:cloudstack]
|
|
Shindo.tests("Fog::Compute[:#{provider}] | security_group", [provider.to_s]) do
|
|
|
|
security_group_tests(Fog::Compute[provider], (config[:security_group_attributes] || {}), config[:mocked])
|
|
|
|
end
|