1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/network/get_quotas.rb

31 lines
499 B
Ruby

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