Annotation of embedaddon/php/ext/ldap/tests/ldap_unbind_basic.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: ldap_unbind() - Basic ldap_unbind() operation
        !             3: --CREDITS--
        !             4: Patrick Allaert <patrickallaert@php.net>
        !             5: # Belgian PHP Testfest 2009
        !             6: --SKIPIF--
        !             7: <?php require_once('skipif.inc'); ?>
        !             8: <?php require_once('skipifbindfailure.inc'); ?>
        !             9: --FILE--
        !            10: <?php
        !            11: require "connect.inc";
        !            12: 
        !            13: $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
        !            14: 
        !            15: var_dump(ldap_unbind($link));
        !            16: ?>
        !            17: ===DONE===
        !            18: --EXPECT--
        !            19: bool(true)
        !            20: ===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>