Sha256: 447b5c65e0c855c61ee68575ba0da86b937f9d39e3366bab1bc88c1a450d8fc8
Contents?: true
Size: 863 Bytes
Versions: 20
Compression:
Stored size: 863 Bytes
Contents
module Fog module OpenStack class Identity 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::OpenStack::Identity::NotFound end end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems