Rename 'test_dbs' folder to 'db_files'

This commit is contained in:
Timothy Warren 2012-04-10 22:19:01 -04:00
parent 4b5bc8ff5e
commit 8a3bba2c9a
6 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@ -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/*

View File

@ -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();

View File

@ -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);

View File

@ -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;

View File

@ -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);
} }