Sha256: d07a87ecaa9be39fdedc80654ffce828ec58fab12956a5196e5d8e79fb16792d
Contents?: true
Size: 699 Bytes
Versions: 108
Compression:
Stored size: 699 Bytes
Contents
module Fog module Compute class OpenStack class Real def list_images request( :expects => [200, 203], :method => 'GET', :path => 'images.json' ) end end class Mock def list_images response = Excon::Response.new data = list_images_detail.body['images'] images = [] for image in data images << image.reject { |key, value| !['id', 'name', 'links'].include?(key) } end response.status = [200, 203][rand(1)] response.body = { 'images' => images } response end end end end end
Version data entries
108 entries across 108 versions & 19 rubygems