1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/google/models/compute/server_tests.rb
2013-04-29 16:55:38 -07:00

15 lines
271 B
Ruby

Shindo.tests("Fog::Compute[:google] | server model", ['google']) do
tests('bootstrap') do
@instance = Fog::Compute[:google].servers.bootstrap
test('#ready?') do
@insance.ready?
end
test('#destroy') do
@instance.destroy
end
end
end