Browse Source

Merge pull request #1720 from dizews/move-urlmanager-into-common-config

move showScriptName into the common config of tests
tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
9fd9487209
  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