Remove unecessary sqlite test file

This commit is contained in:
Timothy Warren 2012-02-29 15:25:35 -05:00
parent ee287a5acb
commit a9c9ff14cb
2 changed files with 4 additions and 5 deletions

4
.gitignore vendored
View File

@ -3,6 +3,4 @@
settings.json
errors.txt
*/simpletest/*
tests/test_dbs/*
*.db
*.FDB
tests/test_dbs/*

View File

@ -22,8 +22,9 @@ class SQLiteTest extends UnitTestCase {
function __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()