Sha256: 90e2f71280b442fc6de97c9108aa86fe93a33a98282a24d29b51e9ee986f1dc5
Contents?: true
Size: 733 Bytes
Versions: 79
Compression:
Stored size: 733 Bytes
Contents
Shindo.tests('Fog::Compute[:vsphere] | vm_config_vnc request', ['vsphere']) do compute = Fog::Compute[:vsphere] reconfig_target = '50137835-88a1-436e-768e-9b2677076e67' vnc_spec = {:port => '5900', :password => 'ssaaa', :enabled => 'true'} tests('The response should') do response = compute.vm_config_vnc('instance_uuid' => reconfig_target).merge(vnc_spec) test('be a kind of Hash') { response.kind_of? Hash } test('should have a task_state key') { response.has_key? 'task_state' } end tests('VNC attrs response should') do response = compute.vm_get_vnc(reconfig_target) test('be a kind of Hash') { response.kind_of? Hash } test('should have a port key') { response.has_key? :port } end end
Version data entries
79 entries across 79 versions & 12 rubygems