Sha256: c346ea06e670bbfa1e524089fdb5c5f9d2dcb845880c21c48b9d4cd04244edd0
Contents?: true
Size: 994 Bytes
Versions: 25
Compression:
Stored size: 994 Bytes
Contents
module Fog module Image class OpenStack class V2 class Real def list_images(options = {}) request( :expects => [200], :method => 'GET', :path => 'images', :query => options ) end end class Mock def list_images(_options = {}) response = Excon::Response.new response.status = [200, 204][rand(2)] response.body = { "images" => [{ "name" => Fog::Mock.random_letters(10), "size" => Fog::Mock.random_numbers(8).to_i, "disk_format" => "iso", "container_format" => "bare", "id" => Fog::Mock.random_hex(36), "checksum" => Fog::Mock.random_hex(32) }] } response end end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems