Sha256: fe0be361c1bdcca8e3de12fca8214b974600ad82c40f0f75ad8e659eb45144c7
Contents?: true
Size: 499 Bytes
Versions: 44
Compression:
Stored size: 499 Bytes
Contents
module Fog module Network class OpenStack class Real def get_quotas request( :expects => 200, :method => 'GET', :path => "/quotas" ) end end class Mock def get_quotas response = Excon::Response.new response.status = 200 response.body = { 'quotas' => self.data[:quotas] } response end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems