1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/compute/models/server_tests.rb
Paul Thornthwaite d76bf9db74 Tag generated model tests with string not symbol
Partial fix for issue #895
2012-05-08 16:56:23 +01:00

20 lines
439 B
Ruby

for provider, config in compute_providers
Shindo.tests("Fog::Compute[:#{provider}] | server", [provider.to_s]) do
server_tests(Fog::Compute[provider], (config[:server_attributes] || {}), config[:mocked]) do
if Fog.mocking? && !config[:mocked]
pending
else
responds_to(:boostrap)
responds_to(:public_ip_address)
responds_to(:scp)
responds_to(:ssh)
end
end
end
end