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_user_by_name.rb
2012-12-06 15:01:22 -08:00

31 lines
547 B
Ruby

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