Remove PHP 5.2 from testing

This commit is contained in:
Timothy Warren 2014-02-19 13:45:05 -05:00
parent 65de660bff
commit 484548dc49
2 changed files with 16 additions and 18 deletions

View File

@ -1,7 +1,6 @@
language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
@ -17,5 +16,4 @@ script: cd tests && phpunit --coverage-text
matrix:
allow_failures:
- php: 5.2
- php: hhvm

View File

@ -7,20 +7,20 @@
* @author Timothy J. Warren
* @copyright Copyright (c) 2012 - 2014
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* CoreTest class - Compatibility and core functionality tests
*
*
* @extends UnitTestCase
*/
class CoreTest extends Query_TestCase {
/**
* __construct function.
*
*
* @access public
* @return void
*/
@ -28,25 +28,25 @@ class CoreTest extends Query_TestCase {
{
parent::__construct();
}
// --------------------------------------------------------------------------
/**
* TestPHPVersion function.
*
*
* @access public
* @return void
*/
public function testPHPVersion()
{
$this->assertTrue(version_compare(PHP_VERSION, "5.2", "ge"));
$this->assertTrue(version_compare(PHP_VERSION, "5.3", "ge"));
}
// --------------------------------------------------------------------------
/**
* TestHasPDO function.
*
*
* @access public
* @return void
*/
@ -54,8 +54,8 @@ class CoreTest extends Query_TestCase {
{
// PDO class exists
$this->assertTrue(class_exists('PDO'));
// Make sure at least one of the supported drivers is enabled
$supported = array(
'mysql',
@ -63,11 +63,11 @@ class CoreTest extends Query_TestCase {
'odbc',
'sqlite',
);
$drivers = PDO::getAvailableDrivers();
$num_supported = count(array_intersect($drivers, $supported));
$this->assertTrue($num_supported > 0);
}
}