Просмотр исходного кода

Fixes #1685: UrlManager::showScriptName should be set true for tests.

Qiang Xue 12 лет назад
Родитель
Сommit
ab34eaa4f9
2 измененных файлов с 6 добавлено и 0 удалено
  1. 3 0
      tests/acceptance/_config.php
  2. 3 0
      tests/functional/_config.php

+ 3 - 0
tests/acceptance/_config.php

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

+ 3 - 0
tests/functional/_config.php

@@ -13,5 +13,8 @@ return ArrayHelper::merge($config, [
 		'db' => [
 		'db' => [
 			'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional',
 			'dsn' => 'mysql:host=localhost;dbname=yii2_basic_functional',
 		],
 		],
+		'urlManager' => [
+			'showScriptName' => true,
+		],
 	],
 	],
 ]);
 ]);