Remove unecessary sqlite test file
This commit is contained in:
parent
ee287a5acb
commit
a9c9ff14cb
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,5 +4,3 @@ settings.json
|
|||||||
errors.txt
|
errors.txt
|
||||||
*/simpletest/*
|
*/simpletest/*
|
||||||
tests/test_dbs/*
|
tests/test_dbs/*
|
||||||
*.db
|
|
||||||
*.FDB
|
|
@ -23,7 +23,8 @@ class SQLiteTest extends UnitTestCase {
|
|||||||
{
|
{
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
|
|
||||||
$this->db = new SQLite(dirname(__FILE__)."/../test_dbs/test_sqlite.db");
|
$path = dirname(__FILE__)."/../test_dbs/test_sqlite.db";
|
||||||
|
$this->db = new SQLite($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
function TestConnection()
|
function TestConnection()
|
||||||
|
Loading…
Reference in New Issue
Block a user