Refactored the Net::LDAP methods to prepare for

the implementation of Net::LDAP::open
This commit is contained in:
blackhedd 2006-04-18 20:55:55 +00:00
parent 7a0da7c9bc
commit 36526cd66a
3 changed files with 114 additions and 25 deletions

View file

@ -5,6 +5,8 @@
$:.unshift "lib"
require 'test/unit'
require 'net/ldap'
require 'stringio'
@ -151,6 +153,14 @@ class TestLdapClient < Test::Unit::TestCase
def test_open
Net::LDAP.open( :host => @host, :port => @port, :auth => @auth ) {
p "NO TESTS!!!"
}
end
end

View file

@ -6,9 +6,6 @@
$:.unshift "lib"
require 'test/unit'
require 'tests/testber'
require 'tests/testldif'
require 'tests/testldap'
require 'net/ldap'
require 'net/ldif'