Merge pull request #5968 from Ragazzo/applications_config_fix

fixed fixture controller config for applications
This commit is contained in:
Alexander Makarov
2014-11-08 12:05:20 +03:00
2 changed files with 3 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ $config = yii\helpers\ArrayHelper::merge(
'class' => 'yii\faker\FixtureController', 'class' => 'yii\faker\FixtureController',
'fixtureDataPath' => '@tests/codeception/common/fixtures/data', 'fixtureDataPath' => '@tests/codeception/common/fixtures/data',
'templatePath' => '@tests/codeception/common/templates/fixtures', 'templatePath' => '@tests/codeception/common/templates/fixtures',
'namespace' => 'tests\codeception\common\fixtures',
], ],
], ],
] ]

View File

@@ -18,7 +18,8 @@ $config = yii\helpers\ArrayHelper::merge(
'fixture' => [ 'fixture' => [
'class' => 'yii\faker\FixtureController', 'class' => 'yii\faker\FixtureController',
'fixtureDataPath' => '@tests/codeception/fixtures', 'fixtureDataPath' => '@tests/codeception/fixtures',
'templatePath' => '@tests/codeception/templates' 'templatePath' => '@tests/codeception/templates',
'namespace' => 'tests\codeception\fixtures',
], ],
], ],
] ]