Sha256: f449a219dd3261e29e0cf04868cdc0666f163b3320f680123ef8e68e6f111825
Contents?: true
Size: 502 Bytes
Versions: 39
Compression:
Stored size: 502 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
39 entries across 37 versions & 3 rubygems