Sha256: 2dcae356f728bb2dc0bbce33649888feb98df2f4eb8ce66de44c32a15b0175e6
Contents?: true
Size: 812 Bytes
Versions: 13
Compression:
Stored size: 812 Bytes
Contents
Shindo.tests('Fog::Compute[:vsphere] | vm_reconfig_memory request', ['vsphere']) do compute = Fog::Compute[:vsphere] reconfig_target = '50137835-88a1-436e-768e-9b2677076e67' reconfig_spec = 4096 tests('The response should') do response = compute.vm_reconfig_memory('instance_uuid' => reconfig_target, 'memory' => reconfig_spec) 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_reconfig_memory('memory' => reconfig_spec) } raises(ArgumentError, 'raises ArgumentError when memory option is missing') { compute.vm_reconfig_memory('instance_uuid' => reconfig_target) } end end
Version data entries
13 entries across 11 versions & 2 rubygems