Sha256: c3a990f8df05f503fa9b6cd05309cfa649a27e60bfb7cf57d3cfb013a24efd03
Contents?: true
Size: 562 Bytes
Versions: 39
Compression:
Stored size: 562 Bytes
Contents
module Fog module DNS class OpenStack 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
39 entries across 37 versions & 3 rubygems