Sha256: 281a807bf177a9855bded49a0df1314a734d42e6f37de738654f86de662d999f
Contents?: true
Size: 683 Bytes
Versions: 40
Compression:
Stored size: 683 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
40 entries across 40 versions & 5 rubygems