2013-12-30 09:22:18 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2014-08-17 18:45:58 +04:00
|
|
|
* Application configuration shared by all test types
|
2013-12-30 09:22:18 -05:00
|
|
|
*/
|
|
|
|
return [
|
2015-05-13 14:14:06 +03:00
|
|
|
'language' => 'en-US',
|
2015-01-29 15:20:45 +03:00
|
|
|
'controllerMap' => [
|
|
|
|
'fixture' => [
|
|
|
|
'class' => 'yii\faker\FixtureController',
|
|
|
|
'fixtureDataPath' => '@tests/codeception/fixtures',
|
|
|
|
'templatePath' => '@tests/codeception/templates',
|
|
|
|
'namespace' => 'tests\codeception\fixtures',
|
2015-01-29 14:49:12 +03:00
|
|
|
],
|
|
|
|
],
|
2014-03-16 10:46:16 +06:00
|
|
|
'components' => [
|
2014-08-25 02:00:49 +04:00
|
|
|
'db' => [
|
|
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_tests',
|
|
|
|
],
|
2014-06-26 18:28:57 +04:00
|
|
|
'mailer' => [
|
2014-03-16 10:46:16 +06:00
|
|
|
'useFileTransport' => true,
|
|
|
|
],
|
|
|
|
'urlManager' => [
|
|
|
|
'showScriptName' => true,
|
|
|
|
],
|
|
|
|
],
|
2013-12-30 09:22:18 -05:00
|
|
|
];
|