Sha256: fd61dca1e6194f3a61de557d5985d983c3e22b1e04454ce4c1ab34105e55b3de
Contents?: true
Size: 544 Bytes
Versions: 39
Compression:
Stored size: 544 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' => (data[:quota_updated] || data[:quota]) } response end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems