1--TEST--
2SQLite3::open test with empty string argument via the constructor
3--CREDITS--
4Thijs Feryn <thijs@feryn.eu>
5#TestFest PHPBelgium 2009
6--EXTENSIONS--
7sqlite3
8--FILE--
9<?php
10$db = new SQLite3('');
11echo "Done\n";
12?>
13--EXPECT--
14Done
15