Sophie

Sophie

distrib > Mandriva > 2009.0 > x86_64 > media > contrib-release > by-pkgid > 1e7e9638edf0671daaacd16b3392c029 > files > 25

ruby-ldap-0.9.7-3mdv2008.1.x86_64.rpm

# -*- ruby -*-
# This file is a part of test scripts of LDAP extension module.

$test = File.dirname($0)
require "#{$test}/conf"
require "./ldap"

LDAP::Conn.new($HOST, $PORT).bind{|conn|
  conn.perror("bind")
  begin
    conn.compare("cn=Takaaki Tateishi, dc=localhost, dc=localdomain",
		 "cn", "Takaaki Tateishi")
  rescue LDAP::ResultError
    exit(0)
  end
  exit(1)
}