Commit b7c315f3 by Carsten Brandt

skip requirements checker test on HHVM

parent 228f8109
......@@ -129,6 +129,10 @@ class YiiRequirementCheckerTest extends TestCase
public function testCheckPhpExtensionVersion()
{
if (defined('HHVM_VERSION')) {
$this->markTestSkipped('Can not test this on HHVM.');
}
$requirementsChecker = new YiiRequirementChecker();
$this->assertFalse($requirementsChecker->checkPhpExtensionVersion('some_unexisting_php_extension', '0.1'), 'No fail while checking unexisting extension!');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment