mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
17 lines
334 B
Ruby
17 lines
334 B
Ruby
![]() |
Shindo.tests('Fog::Compute[:xenserver] | enable_host request', ['xenserver']) do
|
||
|
|
||
|
compute = Fog::Compute[:xenserver]
|
||
|
host = compute.hosts.first
|
||
|
|
||
|
tests('#enable_host') do
|
||
|
test('enables the host') do
|
||
|
compute.enable_host host.reference
|
||
|
host.reload
|
||
|
host.enabled
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# Cleanup
|
||
|
host.enable
|
||
|
end
|