Sha256: 487d4faa05674b8232ab8e36d5b0aa0172e5d5a42af7ac9387f3705c0a42b3c0
Contents?: true
Size: 954 Bytes
Versions: 20
Compression:
Stored size: 954 Bytes
Contents
module Fog module OpenStack class Image class V2 class Real def get_image_by_id(image_id) request( :expects => [200], :method => 'GET', :path => "images/#{image_id}" ) end end class Mock def get_image_by_id(_image_id) response = Excon::Response.new response.status = [200][rand(2)] response.body = { "images" => [{ "name" => "mock-image-name", "size" => 25165824, "disk_format" => "ami", "container_format" => "ami", "id" => "0e09fbd6-43c5-448a-83e9-0d3d05f9747e", "checksum" => "2f81976cae15c16ef0010c51e3a6c163" }] } response end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems