tests/slicehost/requests/compute/image_tests.rb in fog-0.3.7 vs tests/slicehost/requests/compute/image_tests.rb in fog-0.3.8
- old
+ new
@@ -6,21 +6,24 @@
}
tests('success') do
tests('#get_image(19)').formats(@image_format) do
+ pending if Fog.mocking?
Slicehost[:compute].get_image(19).body
end
tests('#get_images').formats({ 'images' => [@image_format] }) do
+ pending if Fog.mocking?
Slicehost[:compute].get_images.body
end
end
tests('failure') do
tests('#get_image(0)').raises(Excon::Errors::Forbidden) do
+ pending if Fog.mocking?
Slicehost[:compute].get_image(0)
end
end