1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[vsphere|compute] mark test requiring guid pending, as require can not be found

This commit is contained in:
geemus 2011-09-22 19:54:11 -05:00
parent dbb3b0e0dc
commit af7ebb2ad8

View file

@ -1,5 +1,5 @@
Shindo.tests("Fog::Compute[:servers] | vm_clone request") do
require 'guid'
#require 'guid'
template = "50323f93-6835-1178-8b8f-9e2109890e1a"
compute = Fog::Compute[:vsphere]
@ -17,6 +17,7 @@ Shindo.tests("Fog::Compute[:servers] | vm_clone request") do
compute.vm_clone('instance_uuid' => '123', 'name' => 'jefftest')
end
raises(Fog::Compute::Vsphere::NotFound, 'it should raise Fog::Compute::Vsphere::NotFound when the UUID is not a string') do
pending # require 'guid'
compute.vm_clone('instance_uuid' => Guid.from_s(template), 'name' => 'jefftestfoo')
end
end