Unit tests fix

This commit is contained in:
Alexander Kochetov
2013-05-10 16:18:01 +04:00
parent bea449f8a0
commit 4b8bcd43e0

View File

@ -2,6 +2,7 @@
namespace yiiunit\framework\rbac;
use Yii;
use yii\rbac\PhpManager;
require_once(__DIR__ . '/ManagerTestBase.php');
@ -10,7 +11,7 @@ class PhpManagerTest extends ManagerTestBase
{
public function setUp()
{
$authFile = \Yii::$app->getRuntimePath() . '/rbac.php';
$authFile = Yii::$app->getRuntimePath() . '/rbac.php';
@unlink($authFile);
$this->auth = new PhpManager;
$this->auth->authFile = $authFile;