Sha256: ebac32472ae3fe32f7e21e02906dd22e36ca9e32b8e7716ed136784e3fcf9043
Contents?: true
Size: 557 Bytes
Versions: 72
Compression:
Stored size: 557 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.kind_of? 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
72 entries across 72 versions & 5 rubygems