mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
26 lines
678 B
Ruby
26 lines
678 B
Ruby
|
def server_tests(connection, params = {}, mocks_implemented = true)
|
||
|
model_tests(connection.servers, params, mocks_implemented) do
|
||
|
|
||
|
tests('#reload').returns(true) do
|
||
|
pending if Fog.mocking? && !mocks_implemented
|
||
|
@instance.wait_for { ready? }
|
||
|
identity = @instance.identity
|
||
|
!identity.nil? && identity == @instance.reload.identity
|
||
|
end
|
||
|
|
||
|
responds_to([:ready?, :state])
|
||
|
yield if block_given?
|
||
|
|
||
|
tests('#reboot').succeeds do
|
||
|
pending if Fog.mocking? && !mocks_implemented
|
||
|
@instance.wait_for { ready? }
|
||
|
@instance.reboot
|
||
|
end
|
||
|
|
||
|
if !Fog.mocking? || mocks_implemented
|
||
|
@instance.wait_for { ready? }
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|