Commit 383b9d32 by Carsten Brandt

skip fixture controller test on HHVM

parent 377cb09a
...@@ -24,6 +24,11 @@ class FixtureControllerTest extends TestCase ...@@ -24,6 +24,11 @@ class FixtureControllerTest extends TestCase
{ {
parent::setUp(); parent::setUp();
if (defined('HHVM_VERSION')) {
// https://github.com/facebook/hhvm/issues/1447
$this->markTestSkipped('Can not test on HHVM because require is cached.');
}
$this->mockApplication(); $this->mockApplication();
$this->_fixtureController = Yii::createObject([ $this->_fixtureController = Yii::createObject([
......
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