HummingBirdAnimeClient/tests/AnimeClient/RequirementsTest.php

38 lines
925 B
PHP
Raw 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
*
* PHP version 7.4
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2020-01-08 15:39:49 -05:00
* @copyright 2015 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-08-04 09:30:21 -04:00
* @version 5.1
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
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 {
2020-04-13 09:20:05 -04:00
public function testPHPVersion(): void
{
2020-10-21 18:12:22 -04:00
$this->assertTrue(version_compare(PHP_VERSION, "7.4", "ge"));
}
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();
$this->assertTrue(in_array('sqlite', $drivers));
}
}