OpenSQLManager/tests/databases/pgsql-qb.php

39 lines
861 B
PHP
Raw Normal View History

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
*/
// --------------------------------------------------------------------------
2012-03-19 14:30:52 -04:00
class PgSQLQBTest extends QBTest {
2012-03-09 16:30:33 -05:00
function __construct()
2012-03-19 10:19:34 -04:00
{
parent::__construct();
// Attempt to connect, if there is a test config file
if (is_file("../test_config.json"))
{
$params = json_decode(file_get_contents("../test_config.json"));
$params = $params->pgsql;
$params->type = "pgsql";
$this->db = new Query_Builder($params);
2012-03-19 14:30:52 -04:00
// echo '<hr /> Postgres Queries <hr />';
2012-03-19 10:19:34 -04:00
}
}
function TestExists()
{
$this->assertTrue(in_array('pgsql', pdo_drivers()));
}
2012-03-09 16:30:33 -05:00
}