2015-06-25 17:00:29 -04:00
|
|
|
<?php
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
}
|