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
|
|
|
*
|
2023-07-13 11:08:05 -04:00
|
|
|
* PHP version 8.1
|
2017-02-16 11:09:37 -05:00
|
|
|
*
|
2023-07-13 11:08:05 -04:00
|
|
|
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
|
2017-02-16 11:09:37 -05:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2023-07-13 11:08:05 -04: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;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
final class RequirementsTest extends AnimeClientTestCase
|
|
|
|
{
|
2020-04-13 09:20:05 -04:00
|
|
|
public function testPHPVersion(): void
|
2015-06-25 17:00:29 -04:00
|
|
|
{
|
2023-05-19 10:56:23 -04:00
|
|
|
$this->assertTrue(PHP_VERSION_ID >= 8);
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
|
|
|
|
2020-04-13 09:20:05 -04:00
|
|
|
public function testHasPDO(): void
|
2016-07-28 10:44:13 -04:00
|
|
|
{
|
2015-06-25 17:00:29 -04:00
|
|
|
$this->assertTrue(class_exists('PDO'));
|
2016-07-28 10:44:13 -04:00
|
|
|
}
|
|
|
|
|
2020-04-13 09:20:05 -04:00
|
|
|
public function testHasPDOSqlite(): void
|
2016-07-28 10:44:13 -04:00
|
|
|
{
|
2015-06-25 17:00:29 -04:00
|
|
|
$drivers = PDO::getAvailableDrivers();
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertTrue(in_array('sqlite', $drivers, TRUE));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
2022-03-04 12:19:47 -05:00
|
|
|
}
|