Sha256: 0272e86f68b3ecd4722871438ee6182ee2832fdba7c3b066002b504768362d7f
Contents?: true
Size: 656 Bytes
Versions: 25
Compression:
Stored size: 656 Bytes
Contents
module Fog module Identity class OpenStack 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
25 entries across 23 versions & 3 rubygems