Sha256: 3da8006e84ff3e8cc4e86c75186e9faba29f843405c9c4be09ba6cbb190e196d
Contents?: true
Size: 742 Bytes
Versions: 41
Compression:
Stored size: 742 Bytes
Contents
Shindo.tests('Fog::Compute[:vsphere] | modify_vm_cdrom request', ['vsphere']) do compute = Fog::Compute[:vsphere] modify_target = '5032c8a5-9c5e-ba7a-3804-832a03e16381' modify_cdrom = compute.cdroms.new( instance_uuid: modify_target, ) tests('When adding a cdrom the response should') do response = compute.add_vm_cdrom(modify_cdrom) test('be a kind of Hash') { response.kind_of? Hash } test('should have a task_state key') { response.key? 'task_state' } end tests('When destroying a cdrom the response should') do response = compute.destroy_vm_cdrom(modify_cdrom) test('be a kind of Hash') { response.kind_of? Hash } test('should have a task_state key') { response.key? 'task_state' } end end
Version data entries
41 entries across 41 versions & 1 rubygems