Browse Source

Merge branch 'master' of git://github.com/yiisoft/yii2 into var-dumper-dump-call-static-dump-as-string

tags/2.0.0-beta
Rinat Silnov 12 years ago
parent
commit
b7e8ebf237
  1. 2
      tests/unit/framework/caching/ApcCacheTest.php

2
tests/unit/framework/caching/ApcCacheTest.php

@ -17,6 +17,8 @@ class ApcCacheTest extends CacheTest
{
if(!extension_loaded("apc")) {
$this->markTestSkipped("APC not installed. Skipping.");
} else if ('cli' === PHP_SAPI && !ini_get('apc.enable_cli')) {
$this->markTestSkipped("APC cli is not enabled. Skipping.");
}
if($this->_cacheInstance === null) {

Loading…
Cancel
Save