Rename 'test_dbs' folder to 'db_files'
This commit is contained in:
parent
4b5bc8ff5e
commit
8a3bba2c9a
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,6 +2,6 @@
|
||||
*.DS_Store
|
||||
settings.json
|
||||
errors.txt
|
||||
tests/test_dbs/*
|
||||
tests/db_files/*
|
||||
test_config.json
|
||||
nbproject/*
|
@ -21,7 +21,7 @@ class FirebirdQBTest extends QBTest {
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$dbpath = TEST_DIR.DS.'test_dbs'.DS.'FB_TEST_DB.FDB';
|
||||
$dbpath = TEST_DIR.DS.'db_files'.DS.'FB_TEST_DB.FDB';
|
||||
|
||||
// Test the query builder
|
||||
$params = new Stdclass();
|
||||
|
@ -21,7 +21,7 @@ class FirebirdTest extends DBTest {
|
||||
|
||||
function setUp()
|
||||
{
|
||||
$dbpath = TEST_DIR.DS.'test_dbs'.DS.'FB_TEST_DB.FDB';
|
||||
$dbpath = TEST_DIR.DS.'db_files'.DS.'FB_TEST_DB.FDB';
|
||||
|
||||
// Test the db driver directly
|
||||
$this->db = new Firebird('localhost:'.$dbpath);
|
||||
|
@ -21,7 +21,7 @@
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$path = TEST_DIR.DS.'test_dbs'.DS.'test_sqlite.db';
|
||||
$path = TEST_DIR.DS.'db_files'.DS.'test_sqlite.db';
|
||||
$params = new Stdclass();
|
||||
$params->type = 'sqlite';
|
||||
$params->file = $path;
|
||||
|
@ -26,7 +26,7 @@ class SQLiteTest extends UnitTestCase {
|
||||
|
||||
function setUp()
|
||||
{
|
||||
$path = TEST_DIR.DS.'test_dbs'.DS.'test_sqlite.db';
|
||||
$path = TEST_DIR.DS.'db_files'.DS.'test_sqlite.db';
|
||||
$this->db = new SQLite($path);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user