Annotation of embedaddon/php/ext/sqlite3/tests/sqlite3_prepare_with_empty_string.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SQLite3::prepare test with empty string argument
        !             3: --CREDITS--
        !             4: Thijs Feryn <thijs@feryn.eu>
        !             5: #TestFest PHPBelgium 2009
        !             6: --SKIPIF--
        !             7: <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
        !             8: --FILE--
        !             9: <?php
        !            10: $db = new SQLite3(':memory:');
        !            11: var_dump($db->prepare(''));
        !            12: echo "Done\n";
        !            13: ?>
        !            14: --EXPECTF--
        !            15: bool(false)
        !            16: Done

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