Sha256: c0c344308414b9585e72e06ee5f4e85d33fed290acecec9fb776a7e7efdb002f
Contents?: true
Size: 656 Bytes
Versions: 22
Compression:
Stored size: 656 Bytes
Contents
module Fog module OpenStack class Identity class V2 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 user = data[:users].values.select { |u| u['name'] == name }[0] response.body = { 'user' => user } response end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems