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