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
|
*.DS_Store
|
||||||
settings.json
|
settings.json
|
||||||
errors.txt
|
errors.txt
|
||||||
tests/test_dbs/*
|
tests/db_files/*
|
||||||
test_config.json
|
test_config.json
|
||||||
nbproject/*
|
nbproject/*
|
@ -21,7 +21,7 @@ class FirebirdQBTest extends QBTest {
|
|||||||
{
|
{
|
||||||
parent::__construct();
|
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
|
// Test the query builder
|
||||||
$params = new Stdclass();
|
$params = new Stdclass();
|
||||||
|
@ -21,7 +21,7 @@ class FirebirdTest extends DBTest {
|
|||||||
|
|
||||||
function setUp()
|
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
|
// Test the db driver directly
|
||||||
$this->db = new Firebird('localhost:'.$dbpath);
|
$this->db = new Firebird('localhost:'.$dbpath);
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
{
|
{
|
||||||
parent::__construct();
|
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 = new Stdclass();
|
||||||
$params->type = 'sqlite';
|
$params->type = 'sqlite';
|
||||||
$params->file = $path;
|
$params->file = $path;
|
||||||
|
@ -26,7 +26,7 @@ class SQLiteTest extends UnitTestCase {
|
|||||||
|
|
||||||
function setUp()
|
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);
|
$this->db = new SQLite($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user