Sha256: 052df7cc91d4bd2b47f03359c782d78818afa4f93a570707e44a84d303572590
Contents?: true
Size: 689 Bytes
Versions: 44
Compression:
Stored size: 689 Bytes
Contents
module Fog module Network class OpenStack class Real def update_quota(tenant_id, options = {}) request( :body => Fog::JSON.encode({ 'quota' => options} ), :expects => 200, :method => 'PUT', :path => "/quotas/#{tenant_id}" ) end end class Mock def update_quota(tenant_id, options = {}) self.data[:quota_updated] = self.data[:quota].merge options response = Excon::Response.new response.status = 200 response.body = { 'quota' => self.data[:quota_updated] } response end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems