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/identity/get_tenant.rb

32 lines
770 B
Ruby
Raw Normal View History

2012-02-22 09:40:32 -05:00
module Fog
module Identity
class OpenStack
class Real
def get_tenant(id)
request(
:expects => [200, 204],
:method => 'GET',
:path => "tenants/#{id}"
)
end
end # class Real
class Mock
def get_tenant(id)
response = Excon::Response.new
response.status = [200, 204][rand(1)]
response.body = {
'tenant' => {
'id' => id,
2012-02-22 09:40:32 -05:00
'description' => 'Has access to everything',
'enabled' => true,
'name' => 'admin'
}
}
response
end # def list_tenants
end # class Mock
end # class OpenStack
end # module Identity
end # module Fog