HummingBirdAnimeClient/tests/AnimeClient/RequirementsTest.php

40 lines
860 B
PHP
Raw Permalink Normal View History

<?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
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
* @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-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
{
2023-05-19 10:56:23 -04:00
$this->assertTrue(PHP_VERSION_ID >= 8);
}
2020-04-13 09:20:05 -04:00
public function testHasPDO(): void
{
$this->assertTrue(class_exists('PDO'));
}
2020-04-13 09:20:05 -04:00
public function testHasPDOSqlite(): void
{
$drivers = PDO::getAvailableDrivers();
2022-03-04 12:19:47 -05:00
$this->assertTrue(in_array('sqlite', $drivers, TRUE));
}
2022-03-04 12:19:47 -05:00
}