Sha256: c5ab3ca14a83d30106cda6a8636e4c4d9dac18fa997678d0d46bc24423b6cd70
Contents?: true
Size: 451 Bytes
Versions: 39
Compression:
Stored size: 451 Bytes
Contents
module Fog module Network class OpenStack class Real def delete_quota(tenant_id) request( :expects => 204, :method => 'DELETE', :path => "/quotas/#{tenant_id}" ) end end class Mock def delete_quota(_tenant_id) response = Excon::Response.new response.status = 204 response end end end end end
Version data entries
39 entries across 37 versions & 3 rubygems