Sha256: 2746d4c745236824945b043b0c9c2831a3b0c573256a0375cb08b736cfd6b33b
Contents?: true
Size: 805 Bytes
Versions: 13
Compression:
Stored size: 805 Bytes
Contents
Shindo.tests('Fog::Compute[:vsphere] | vm_take_snapshot request', ['vsphere']) do compute = Fog::Compute[:vsphere] powered_off_vm = nil tests('The response should') do response = compute.vm_take_snapshot('instance_uuid' => powered_off_vm, 'name' => 'foobar') test('be a kind of Hash') { response.is_a? Hash } test('should have a task_state key') { response.key? 'task_state' } test('should have a was_cancelled key') { response.key? 'was_cancelled' } end tests('The expected options') do raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_take_snapshot('name' => 'foobar') } raises(ArgumentError, 'raises ArgumentError when name option is missing') { compute.vm_take_snapshot('instance_uuid' => powered_off_vm) } end end
Version data entries
13 entries across 11 versions & 2 rubygems