Merge pull request #1759 from Ragazzo/fixtures_controller_improvements

Added to the basic app, fixed config, added to core commands.
This commit is contained in:
Carsten Brandt 2014-01-03 14:22:51 -08:00
commit 66b8e92540
3 changed files with 14 additions and 0 deletions

View File

@ -1,4 +1,7 @@
<?php
Yii::setAlias('@tests', dirname(__DIR__) . '/tests');
$params = require(__DIR__ . '/params.php');
return [
'id' => 'basic-console',
@ -19,6 +22,17 @@ return [
],
],
],
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
],
'fixture' => [
'class' => 'yii\test\DbFixtureManager',
'basePath' => '@tests/unit/fixtures',
],
],
'params' => $params,
];

View File

View File