Sha256: e9f036a610ea6e03c506873123230d164fcc2d6f4ec210c98cbe6418a09130d0
Contents?: true
Size: 544 Bytes
Versions: 21
Compression:
Stored size: 544 Bytes
Contents
module Fog module OpenStack class Network class Real def get_quota(tenant_id) request( :expects => 200, :method => 'GET', :path => "/quotas/#{tenant_id}" ) end end class Mock def get_quota(_tenant_id) response = Excon::Response.new response.status = 200 response.body = { 'quota' => (data[:quota_updated] || data[:quota]) } response end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems