mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
32 lines
561 B
Ruby
32 lines
561 B
Ruby
|
module Fog
|
||
|
module Network
|
||
|
class OpenStack
|
||
|
class Real
|
||
|
|
||
|
def get_quota(tenant_id)
|
||
|
request(
|
||
|
:expects => 200,
|
||
|
:method => 'GET',
|
||
|
:path => "/quotas/#{tenant_id}"
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def get_quota(tenant_id)
|
||
|
response = Excon::Response.new
|
||
|
response.status = 200
|
||
|
response.body = {
|
||
|
'quota' => (self.data[:quota_updated] or self.data[:quota])
|
||
|
}
|
||
|
response
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|