Remove pointless ODBC tests

This commit is contained in:
Timothy Warren 2012-04-17 15:05:36 -04:00
parent bf162323f0
commit 16ad8b15d0
4 changed files with 1 additions and 48 deletions

View File

@ -1,21 +0,0 @@
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/Query
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
class ODBCQBTest extends UnitTestCase {
function TestExists()
{
$this->assertTrue(in_array('odbc', pdo_drivers()));
}
}

View File

@ -1,26 +0,0 @@
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/Query
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* ODBCTest class.
*
* @extends UnitTestCase
*/
class ODBCTest extends UnitTestCase {
function TestExists()
{
$this->assertTrue(in_array('odbc', pdo_drivers()));
}
}

Binary file not shown.

View File

@ -46,7 +46,7 @@ foreach(pdo_drivers() as $d)
continue;
}
$src_dir = "{$src_path}{$d}";
$src_dir = "{$test_path}{$d}";
if(is_dir($src_dir))
{