Sha256: 22480ef1bdd9fe836989f5efa393cadd2bfd50dfc30699672e52114dce15675a
Contents?: true
Size: 603 Bytes
Versions: 20
Compression:
Stored size: 603 Bytes
Contents
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 user = self.data[:users].values.select {|user| user['name'] == name}[0] response.body = { 'user' => user } response end end end end end
Version data entries
20 entries across 20 versions & 4 rubygems