Sha256: 2367d545608305a2d0c45f64d434cad4700f0cf15ff29310522b774f075405b2
Contents?: true
Size: 561 Bytes
Versions: 44
Compression:
Stored size: 561 Bytes
Contents
module Fog module Network class OpenStack 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' => (self.data[:quota_updated] or self.data[:quota]) } response end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems