Sha256: 453ece4e1b0f5848f669b195cb598cfbca9b4a0530e9961a79f228bf26d1d4ad
Contents?: true
Size: 834 Bytes
Versions: 25
Compression:
Stored size: 834 Bytes
Contents
module Fog module Image class OpenStack class V2 class Real def download_image(image_id, _content_range = nil, params) # TODO: implement content range handling request_hash = { :expects => [200, 204], :method => 'GET', :raw_body => true, :path => "images/#{image_id}/file", } request_hash[:response_block] = params[:response_block] if params[:response_block] request(request_hash).body end end class Mock def download_image(_image_id, _content_range = nil) response = Excon::Response.new response.status = [200, 204][rand(2)] response.body = "" response end end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems