Annotation of embedaddon/php/ext/curl/tests/curl_basic_014.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test curl_init() function with basic functionality
                      3: --CREDITS--
                      4: Jean-Marc Fontaine <jmf@durcommefaire.net>
                      5: --SKIPIF--
                      6: <?php if (!extension_loaded("curl")) exit("skip curl extension not loaded"); ?>
                      7: --FILE--
                      8: <?php
                      9:   $ch = curl_init();
                     10:   var_dump($ch);
                     11: ?>
                     12: ===DONE===
                     13: --EXPECTF--
                     14: resource(%d) of type (curl)
                     15: ===DONE===

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