mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
31 lines
499 B
Ruby
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
|