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/list_users.rb
Nelvin Driz e47c5eb9c4 [openstack|identity] Update Fog to Accomodate Tenant Deletion Workaround
Workflow

Signed-off-by: Nelvin Driz <nelvindriz@live.com>
2012-04-30 10:35:02 +08:00

25 lines
654 B
Ruby

module Fog
module Identity
class OpenStack
class Real
def list_users(tenant_id = nil)
path = tenant_id ? "tenants/#{tenant_id}/users" : 'users'
request(
:expects => [200, 204],
:method => 'GET',
:path => path
)
end
end # class Real
class Mock
def list_users(tenant_id = nil)
response = Excon::Response.new
response.status = 200
response.body = { 'users' => self.data[:users].values }
response
end
end # class Mock
end # class OpenStack
end # module Identity
end # module Fog