# File lib/fog/identity/openstack/v2/requests/create_user.rb, line 27
          def create_user(name, _password, email, tenantId = nil, enabled = true)
            response = Excon::Response.new
            response.status = 200
            data = {
              'id'       => Fog::Mock.random_hex(32),
              'name'     => name,
              'email'    => email,
              'tenantId' => tenantId,
              'enabled'  => enabled
            }
            self.data[:users][data['id']] = data
            response.body = {'user' => data}
            response
          end