mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
18 lines
631 B
Ruby
18 lines
631 B
Ruby
Shindo.tests('Fog::Compute[:ovirt] | vm_update request', ['ovirt']) do
|
|
|
|
compute = Fog::Compute[:ovirt]
|
|
if compute.servers.all(:search => 'fog-*').empty?
|
|
compute.create_vm(:name => 'fog-'+Time.now.to_i.to_s, :cluster_name => 'Default')
|
|
end
|
|
vm = compute.servers.all(:search => 'fog-*').last
|
|
|
|
tests('The response should') do
|
|
response = compute.update_vm(:id => vm.id, :name => vm.name + 'updated')
|
|
test("be a kind of OVIRT::VM") { response.kind_of? OVIRT::VM}
|
|
end
|
|
|
|
tests('The expected options') do
|
|
raises(ArgumentError, 'raises ArgumentError when id option is missing') { compute.update_vm }
|
|
end
|
|
|
|
end
|