Query/tests/databases/mysql-qb.php

51 lines
1.0 KiB
PHP
Raw Normal View History

2012-03-15 09:25:18 -04:00
<?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 MySQLQBTest extends QBTest {
2012-03-15 09:25:18 -04:00
function __construct()
2012-03-15 15:46:04 -04:00
{
parent::__construct();
// Attempt to connect, if there is a test config file
2012-03-22 16:12:54 -04:00
/*if (is_file("../test_config.json"))
2012-03-15 15:46:04 -04:00
{
$params = json_decode(file_get_contents("../test_config.json"));
$params = $params->mysql;
$params->type = "mysql";
$this->db = new Query_Builder($params);
2012-03-19 13:58:14 -04:00
// echo '<hr /> MySQL Queries <hr />';
2012-03-15 15:46:04 -04:00
}
2012-03-22 16:12:54 -04:00
elseif ( ! empty($_ENV['TRAVIS']))*/
2012-03-22 16:10:12 -04:00
{
$params = array(
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'test',
'user' => 'root',
'pass' => NULL
);
$this->db = new Query_Builder($params);
}
2012-03-15 15:46:04 -04:00
}
function TestExists()
2012-03-15 09:25:18 -04:00
{
2012-03-15 15:46:04 -04:00
$this->assertTrue(in_array('mysql', pdo_drivers()));
}
2012-03-15 09:25:18 -04:00
}