sqlite3_open_empty_string.phpt 283 B

1234567891011121314
  1. --TEST--
  2. SQLite3::open test with empty string argument via the constructor
  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('');
  11. echo "Done\n";
  12. ?>
  13. --EXPECT--
  14. Done