Sha256: 5d3be52585535f68593c131e50f5273ea146f244c370e863a83a9e6c58b8668d
Contents?: true
Size: 580 Bytes
Versions: 20
Compression:
Stored size: 580 Bytes
Contents
module Fog module OpenStack class Volume module Real def get_quota(tenant_id) request( :expects => 200, :method => 'GET', :path => "/os-quota-sets/#{tenant_id}" ) end end module Mock def get_quota(tenant_id) response = Excon::Response.new response.status = 200 response.body = { 'quota_set' => (data[:quota_updated] || data[:quota]).merge('id' => tenant_id) } response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems