Sha256: 820b525d4b226cb4cf63b4de615a94e604cee4a5ae8c508c8f79ae7050e50192
Contents?: true
Size: 599 Bytes
Versions: 83
Compression:
Stored size: 599 Bytes
Contents
module Fog module Compute class OpenStack class Real def get_quota(tenant_id) request( :expects => 200, :method => 'GET', :path => "/os-quota-sets/#{tenant_id}" ) end end class Mock def get_quota(tenant_id) response = Excon::Response.new response.status = 200 response.body = { 'quota_set' => (self.data[:quota_updated] or self.data[:quota]).merge({'id' => tenant_id}) } response end end end end end
Version data entries
83 entries across 83 versions & 12 rubygems