Merge pull request #518 from shama/patch-cake-request-test

Fix failing tests with CakeRequest when ran in webrunner
This commit is contained in:
Mark Story 2012-02-23 09:22:23 -08:00
commit 66fd891503

View file

@ -1139,6 +1139,7 @@ class CakeRequestTest extends CakeTestCase {
* @return void
*/
public function testGetParamsWithDot() {
$_GET = array();
$_GET['/posts/index/add_add'] = '';
$_SERVER['PHP_SELF'] = '/cake_dev/app/webroot/index.php';
$_SERVER['REQUEST_URI'] = '/cake_dev/posts/index/add.add';
@ -1153,6 +1154,7 @@ class CakeRequestTest extends CakeTestCase {
* @return void
*/
public function testGetParamWithUrlencodedElement() {
$_GET = array();
$_GET['/posts/add/∂∂'] = '';
$_SERVER['PHP_SELF'] = '/cake_dev/app/webroot/index.php';
$_SERVER['REQUEST_URI'] = '/cake_dev/posts/add/%E2%88%82%E2%88%82';