mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
13 lines
396 B
Ruby
13 lines
396 B
Ruby
for provider, config in compute_providers
|
|
|
|
next if [:ecloud].include?(provider)
|
|
|
|
Shindo.tests("Fog::Compute[:#{provider}] | servers", [provider.to_s]) do
|
|
|
|
provider_attributes = config[:provider_attributes] || {}
|
|
provider_attributes.merge!(:provider => provider)
|
|
servers_tests(Fog::Compute.new(provider_attributes), (config[:server_attributes] || {}), config[:mocked])
|
|
|
|
end
|
|
|
|
end
|