Sha256: c9a433f1ac68635daa045c1ef31714a9105b228979d2da1f632f9ae23d04b4c9
Contents?: true
Size: 551 Bytes
Versions: 13
Compression:
Stored size: 551 Bytes
Contents
Shindo.tests('Fog::Compute[:vsphere] | vm_destroy request', ['vsphere']) do compute = Fog::Compute[:vsphere] booted_vm = '5032c8a5-9c5e-ba7a-3804-832a03e16381' tests('The response should') do response = compute.vm_destroy('instance_uuid' => booted_vm) test('be a kind of Hash') { response.is_a? Hash } test('should have a task_state key') { response.key? 'task_state' } end tests('The expected options') do raises(ArgumentError, 'raises ArgumentError when instance_uuid option is missing') { compute.vm_destroy } end end
Version data entries
13 entries across 11 versions & 2 rubygems