Sha256: 41808f8dee04c15c8df42de546374168e9d0af0c377667a1e2caa007694b4b61
Contents?: true
Size: 863 Bytes
Versions: 25
Compression:
Stored size: 863 Bytes
Contents
module Fog module Identity class OpenStack class V2 class Real def update_user(user_id, options = {}) url = options.delete('url') || "/users/#{user_id}" request( :body => Fog::JSON.encode('user' => options), :expects => 200, :method => 'PUT', :path => url ) end end class Mock def update_user(user_id, options) response = Excon::Response.new if user = data[:users][user_id] if options['name'] user['name'] = options['name'] end response.status = 200 response else raise Fog::Identity::OpenStack::NotFound end end end end end end end
Version data entries
25 entries across 23 versions & 3 rubygems