Sha256: 9b46f3152ae32d6ad103d50af6904cde371dc8387d70045c900068ae0e49b33c
Contents?: true
Size: 593 Bytes
Versions: 28
Compression:
Stored size: 593 Bytes
Contents
module Fog module Volume 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
28 entries across 28 versions & 4 rubygems