Commit 44b0c907 by Alexander Makarov

Merge pull request #5968 from Ragazzo/applications_config_fix

fixed fixture controller config for applications
parents c557baa2 8af62ee9
...@@ -22,6 +22,7 @@ $config = yii\helpers\ArrayHelper::merge( ...@@ -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',
], ],
], ],
] ]
......
...@@ -18,7 +18,8 @@ $config = yii\helpers\ArrayHelper::merge( ...@@ -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',
], ],
], ],
] ]
......
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