Sha256: ee2e952cb3ba0d10e9dd54febda1fad8baad84198873052555b38f7cdc8caa6f
Contents?: true
Size: 659 Bytes
Versions: 29
Compression:
Stored size: 659 Bytes
Contents
module Fog module Compute class OpenStack class Real def list_tenants_with_flavor_access(flavor_ref) request( :expects => [200, 203], :method => 'GET', :path => "flavors/#{flavor_ref}/os-flavor-access" ) end end class Mock def list_tenants_with_flavor_access(flavor_ref) response = Excon::Response.new response.status = 200 response.body = { "flavor_access" => [{"tenant_id" => Fog::Mock.random_hex(33), "flavor_id" => flavor_ref.to_s}] } response end end end end end
Version data entries
29 entries across 27 versions & 3 rubygems