Sha256: 1c5d29a249573a272bc0234b06700ac34c73e5ef2085ad668297ee9cbe1b2fea
Contents?: true
Size: 658 Bytes
Versions: 4
Compression:
Stored size: 658 Bytes
Contents
module Fog module Identity class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems