Sha256: d6c283d9e8a30353a716a5fbf0ef1ca2d497fb3d448556e223d467d12b930ab1
Contents?: true
Size: 580 Bytes
Versions: 20
Compression:
Stored size: 580 Bytes
Contents
module Fog module OpenStack class Image class V1 class Real def add_member_to_image(image_id, tenant_id) request( :expects => [200, 204], :method => 'PUT', :path => "images/#{image_id}/members/#{tenant_id}" ) end end class Mock def add_member_to_image(_image_id, _tenant_id) response = Excon::Response.new response.status = [200, 204][rand(2)] response end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems