2017-02-16 11:09:37 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2017-02-16 11:09:37 -05:00
|
|
|
*
|
2018-10-01 11:35:51 -04:00
|
|
|
* PHP version 7.1
|
2017-02-16 11:09:37 -05:00
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2018-01-15 14:43:15 -05:00
|
|
|
* @copyright 2015 - 2018 Timothy J. Warren
|
2017-02-16 11:09:37 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2018-10-01 11:35:51 -04:00
|
|
|
* @version 4.1
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-02-16 11:09:37 -05:00
|
|
|
*/
|
2015-06-25 17:00:29 -04:00
|
|
|
|
2017-02-15 11:49:38 -05:00
|
|
|
namespace Aviat\AnimeClient\Tests;
|
|
|
|
|
|
|
|
use PDO;
|
|
|
|
|
2017-02-15 16:40:18 -05:00
|
|
|
class RequirementsTest extends AnimeClientTestCase {
|
2015-06-25 17:00:29 -04:00
|
|
|
|
|
|
|
public function testPHPVersion()
|
|
|
|
{
|
|
|
|
$this->assertTrue(version_compare(PHP_VERSION, "5.4", "ge"));
|
|
|
|
}
|
|
|
|
|
2016-07-28 10:44:13 -04:00
|
|
|
public function testHasPDO()
|
|
|
|
{
|
2015-06-25 17:00:29 -04:00
|
|
|
$this->assertTrue(class_exists('PDO'));
|
2016-07-28 10:44:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testHasPDOSqlite()
|
|
|
|
{
|
2015-06-25 17:00:29 -04:00
|
|
|
$drivers = PDO::getAvailableDrivers();
|
|
|
|
$this->assertTrue(in_array('sqlite', $drivers));
|
|
|
|
}
|
|
|
|
}
|