Sha256: 639576b1f1694d35e124c25d9be8702c9be862c1958709ea08201e271a440dff
Contents?: true
Size: 503 Bytes
Versions: 14
Compression:
Stored size: 503 Bytes
Contents
module Fog module Image class OpenStack class V1 class Real def delete_image(image_id) request( :expects => 200, :method => 'DELETE', :path => "images/#{image_id}" ) end end class Mock def delete_image(image_id) response = Excon::Response.new response.status = 200 response end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems