Sha256: bea0b89f51f76545e064d17cf61f1cc8e0cca9268c6c04f8694d8eabadcc7f7b
Contents?: true
Size: 660 Bytes
Versions: 62
Compression:
Stored size: 660 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.json" ) 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" => @tenant_id.to_s, "flavor_id" => flavor_ref.to_s }] } response end end end end end
Version data entries
62 entries across 62 versions & 5 rubygems