Sha256: 14c3fe52b3b8357b100bc5500a92b5509f0eb9df243b03ce183c51174315b61d
Contents?: true
Size: 714 Bytes
Versions: 22
Compression:
Stored size: 714 Bytes
Contents
module Fog module OpenStack class Compute class Real def get_image_details(image_id) request( :expects => [200, 203], :method => 'GET', :path => "images/#{image_id}" ) end end class Mock def get_image_details(image_id) response = Excon::Response.new image = list_images_detail.body['images'].find { |im| im['id'] == image_id } if image response.status = [200, 203][rand(2)] response.body = {'image' => image} response else raise Fog::OpenStack::Compute::NotFound end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems