Sha256: 34c3becc9ce7de77855643a59f0cddfbfa797bbe15d84126e32bb2cc15d6495e
Contents?: true
Size: 447 Bytes
Versions: 26
Compression:
Stored size: 447 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
26 entries across 26 versions & 4 rubygems