Browse Source

move showScriptName into the common config of tests

tags/2.0.0-beta
Vladimir Zbrailov 11 years ago
parent
commit
b9855a4593
  1. 3
      apps/basic/tests/_config.php
  2. 3
      apps/basic/tests/acceptance/_config.php
  3. 3
      apps/basic/tests/functional/_config.php

3
apps/basic/tests/_config.php

@ -7,5 +7,8 @@ return [
'mail' => [ 'mail' => [
'useFileTransport' => true, 'useFileTransport' => true,
], ],
'urlManager' => [
'showScriptName' => true,
],
], ],
]; ];

3
apps/basic/tests/acceptance/_config.php

@ -8,9 +8,6 @@ return yii\helpers\ArrayHelper::merge(
'db' => [ 'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_acceptance', 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_acceptance',
], ],
'urlManager' => [
'showScriptName' => true,
],
], ],
] ]
); );

3
apps/basic/tests/functional/_config.php

@ -12,9 +12,6 @@ return yii\helpers\ArrayHelper::merge(
'db' => [ 'db' => [
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional', 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional',
], ],
'urlManager' => [
'showScriptName' => true,
],
], ],
] ]
); );

Loading…
Cancel
Save