Remove pointless ODBC tests
This commit is contained in:
parent
bf162323f0
commit
16ad8b15d0
@ -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()));
|
||||
}
|
||||
}
|
@ -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.
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user