2012-03-09 16:30:33 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* OpenSQLManager
|
|
|
|
*
|
|
|
|
* Free Database manager for Open Source Databases
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/OpenSQLManager
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class PgSQLQBTest extends UnitTestCase {
|
|
|
|
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2012-03-12 11:17:49 -04:00
|
|
|
|
|
|
|
function TestExists()
|
|
|
|
{
|
|
|
|
$this->assertTrue(in_array('pgsql', pdo_drivers()));
|
|
|
|
}
|
2012-03-09 16:30:33 -05:00
|
|
|
}
|