Sha256: 121956dcab83f5ffd4c455748bee594c88461541e90c929a585c616a2dcfd517
Contents?: true
Size: 801 Bytes
Versions: 20
Compression:
Stored size: 801 Bytes
Contents
module Fog module Identity class OpenStack 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 = self.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
Version data entries
20 entries across 20 versions & 4 rubygems