summaryrefslogtreecommitdiff
path: root/ext/sqlite3/tests/sqlite3_open_empty_string.phpt
blob: 940056bf0aee3e530b2d1208317ce5f8e65091ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
SQLite3::open test with empty string argument via the constructor
--CREDITS--
Thijs Feryn <thijs@feryn.eu>
#TestFest PHPBelgium 2009
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$db = new SQLite3('');
echo "Done\n";
?>
--EXPECT--
Done