Sha256: b6f3871fa673be02bb1bc52c90a0943d10b7cbf54e4c94df8ecff814a7d0e287
Contents?: true
Size: 996 Bytes
Versions: 4
Compression:
Stored size: 996 Bytes
Contents
module Fog module Image class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems