Sha256: 1088408b22b8f6f0d78e3cc64fcf3077f7d42bdfdbe08356b9dde66885a2cb62
Contents?: true
Size: 449 Bytes
Versions: 78
Compression:
Stored size: 449 Bytes
Contents
module Fog module Image class OpenStack 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
Version data entries
78 entries across 78 versions & 10 rubygems