mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
271 B
Ruby
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
|