2015-06-25 17:00:29 -04:00
|
|
|
<?php
|
|
|
|
|
2016-07-28 10:44:13 -04:00
|
|
|
class RequirementsTest extends AnimeClient_TestCase {
|
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 testHasGd()
|
2015-06-25 17:00:29 -04:00
|
|
|
{
|
|
|
|
$this->assertTrue(extension_loaded('gd'));
|
2016-07-28 10:44:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testHasMcrypt()
|
|
|
|
{
|
2015-06-25 17:00:29 -04:00
|
|
|
$this->assertTrue(extension_loaded('mcrypt'));
|
2016-07-28 10:44:13 -04:00
|
|
|
}
|
2015-06-25 17:00:29 -04:00
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
}
|