# File lib/mongo/auth/user.rb, line 66
      def ==(other)
        return false unless other.is_a?(User)
        name == other.name && database == other.database && password == other.password
      end