1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/digitalocean/requests/compute/get_server_details_tests.rb
Paul Thornthwaite f08b2e0277 Disable ALL DigitalOcean tests until fixed
There appears to be a glitch in the test suite such that running
`bundle exec rake travis` passes locally without executing the DO tests
but they are running on Travis itself.

So fed up playing whackamole with failures. They are off until the
broken code is fixed.

See https://github.com/fog/fog/pull/3304

This reverts commit 9b7b8fd490.
This reverts commit fa9254ba8d.
2014-12-10 09:59:57 +00:00

13 lines
340 B
Ruby

Shindo.tests('Fog::Compute[:digitalocean] | get_server_details request', ['digitalocean', 'compute']) do
tests('success') do
test('#get_server_details') do
server = fog_test_server
body = Fog::Compute[:digitalocean].get_server_details(server.id).body
body['droplet']['name'] == fog_server_name
end
end
end