Sha256: 5c977099e92934f88cd62da6635dc0cee5f42dc8b35ace7486e4f0885ff82b22
Contents?: true
Size: 595 Bytes
Versions: 12
Compression:
Stored size: 595 Bytes
Contents
module Fog module Volume class OpenStack module Real def get_quota(tenant_id) request( :expects => 200, :method => 'GET', :path => "/os-quota-sets/#{tenant_id}" ) end end module 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
12 entries across 12 versions & 2 rubygems