Sha256: 7357f23ad20bac4c1795d1e77e0542fcccff73394cbdcada08e9a7da93b120a0
Contents?: true
Size: 562 Bytes
Versions: 21
Compression:
Stored size: 562 Bytes
Contents
module Fog module OpenStack class DNS class V1 class Real def get_quota(project_id) request( :expects => 200, :method => 'GET', :path => "quotas/#{project_id}" ) end end class Mock def get_quota(_project_id) response = Excon::Response.new response.status = 200 response.body = data[:quota_updated] || data[:quota] response end end end end end end
Version data entries
21 entries across 21 versions & 3 rubygems