Sha256: 696a5ffc0aefc99d4786c789a520ddf3058d0c20a904d64282debd8be0404784
Contents?: true
Size: 556 Bytes
Versions: 40
Compression:
Stored size: 556 Bytes
Contents
module Fog module Network class OpenStack class Real def get_quota(tenant_id) request( :expects => 200, :method => 'GET', :path => "/quotas/#{tenant_id}" ) end end class Mock def get_quota(tenant_id) response = Excon::Response.new response.status = 200 response.body = { 'quota' => (self.data[:quota_updated] or self.data[:quota]) } response end end end end end
Version data entries
40 entries across 40 versions & 5 rubygems