blob: c1832694a71f83fa00b292c744b33910acbf87dc (
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(__DIR__ . '/skipif.inc'); ?>
--FILE--
<?php
$db = new SQLite3('');
echo "Done\n";
?>
--EXPECT--
Done
|